help.vim 520 B

1234567891011121314151617181920212223242526
  1. " Vim filetype plugin file
  2. " Language: Vim help file
  3. " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
  4. " Latest Revision: 2018-12-29
  5. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. let s:cpo_save = &cpo
  10. set cpo&vim
  11. let b:undo_ftplugin = "setl fo< tw< cole< cocu< keywordprg<"
  12. setlocal formatoptions+=tcroql textwidth=78
  13. if has("conceal")
  14. setlocal cole=2 cocu=nc
  15. endif
  16. " Prefer Vim help instead of manpages.
  17. setlocal keywordprg=:help
  18. let &cpo = s:cpo_save
  19. unlet s:cpo_save