Skip to content

Instantly share code, notes, and snippets.

View zhou13's full-sized avatar

Yichao Zhou zhou13

View GitHub Profile
@zhou13
zhou13 / apacase.vim
Last active December 13, 2020 01:39
Format the title entry of a bib into apacase (title case) in vim
" Format all the word into title cases
:%s/\(^\s*title.*\)\@<=\v<(.)(\w*)/\u\2\3/g
" Change short words back
:%s/\(^\s*title.*\)\@<=\(:\s*\|{\)\@<!\v<(And|As|But|For|If|Nor|Or|So|Yet|A|An|The|As|At|By|For|In|Of|Off|On|Per|To|Up|Via)>/\L\0/g