# HG changeset patch # User Chip Hogg # Date 1346025828 14400 # Node ID 8825c740bb7c85be290f57832fdfc68aa93185f7 # Parent ac0cc7bd738f8a6c1fb8b278797eb065648c35ed Use `autocmd` instead of `au` Using the short form seemed ironic, since it came just before the section warning against using short forms. diff -r ac0cc7bd738f -r 8825c740bb7c chapters/18.markdown --- a/chapters/18.markdown Sun Aug 26 19:58:56 2012 -0400 +++ b/chapters/18.markdown Sun Aug 26 20:03:48 2012 -0400 @@ -58,8 +58,8 @@ :::vim " Vimscript file settings ---------------------- {{{ augroup filetype_vim - au! - au FileType vim setlocal foldmethod=marker + autocmd! + autocmd FileType vim setlocal foldmethod=marker augroup END " }}}