2014-07-10 21:05:51 -07:00
|
|
|
" Vim filetype plugin file
|
2017-11-05 21:05:54 -07:00
|
|
|
" Language: Vim help file
|
|
|
|
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
2019-07-28 17:59:32 -07:00
|
|
|
" Latest Revision: 2018-12-29
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2015-07-26 08:02:36 -07:00
|
|
|
let b:undo_ftplugin = "setl fo< tw< cole< cocu< keywordprg<"
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
setlocal formatoptions+=tcroql textwidth=78
|
|
|
|
if has("conceal")
|
|
|
|
setlocal cole=2 cocu=nc
|
|
|
|
endif
|
|
|
|
|
2015-07-26 08:02:36 -07:00
|
|
|
" Prefer Vim help instead of manpages.
|
|
|
|
setlocal keywordprg=:help
|
|
|
|
|
2014-07-10 21:05:51 -07:00
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|