diff options
author | Juan J. Martinez <jjm@usebox.net> | 2018-07-30 16:04:11 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:27 +0100 |
commit | 744ce5638c0cf5ce0e83c94b72b94995aff2a867 (patch) | |
tree | 3e7ab87eff5fdd4606df452e7b05b44d70d60487 | |
parent | 368fe61134b0d80810402ed1e26b724786c792e3 (diff) | |
download | dotnvim-744ce5638c0cf5ce0e83c94b72b94995aff2a867.tar.gz dotnvim-744ce5638c0cf5ce0e83c94b72b94995aff2a867.zip |
Use pathogen to run helptags
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | vimrc | 1 |
2 files changed, 1 insertions, 4 deletions
@@ -26,10 +26,6 @@ If you're not using vim 8; create a `.vimrc` with: git submodule add https://github.com/user/foo.git bundle/foo git commit -m "Added foo plugin" -You may want to index the plugin docs with: - - :helptags ~/.vim/bundle/foo/doc/ - ## Updating plugins git submodule foreach git pull origin master @@ -86,6 +86,7 @@ map <C-F12> :!ctags -R -f ./.tags .<CR> set omnifunc=syntaxcomplete#Complete call pathogen#infect() +call pathogen#helptags() " looks nice; apparently needs to go after pathogen set background=dark |