heavim/cfg/04-local-help.vim
Emmanuel BENOîT d6f121f28f Starting port of old configuration
Also, documenting it as I go. Especially keyboard shortcuts.
2015-03-02 17:58:40 +01:00

9 lines
287 B
VimL

" If 'doc' directories exist in the local / main configuration, use them
if isdirectory( g:vim_home . "/doc" )
execute "helptags" g:vim_home . "/doc"
endif
if exists( "g:vim_local_path" ) && isdirectory( g:vim_local_path . "/doc" )
execute "helptags" g:vim_local_path . "/doc"
endif