diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-04-02 17:21:49 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:28 +0100 |
commit | 90de8f25969caa2871c37a54bade7e5ada63ba17 (patch) | |
tree | 087cdb328aeb887cb66e109a9b01a27b4e6b80b3 | |
parent | 54c035f3998c2aeb51e36f376d4641b1ef43f24e (diff) | |
download | dotnvim-90de8f25969caa2871c37a54bade7e5ada63ba17.tar.gz dotnvim-90de8f25969caa2871c37a54bade7e5ada63ba17.zip |
vim-easy tags is not maintained anymore, welcome gent_tags.vim
-rw-r--r-- | .gitmodules | 6 | ||||
-rw-r--r-- | README.md | 2 | ||||
m--------- | bundle/gen_tags.vim | 0 | ||||
m--------- | bundle/vim-easytags | 0 | ||||
-rw-r--r-- | vimrc | 16 |
5 files changed, 11 insertions, 13 deletions
diff --git a/.gitmodules b/.gitmodules index f88a16e..1bcbe59 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,9 +7,6 @@ [submodule "bundle/vim-autoformat"] path = bundle/vim-autoformat url = https://github.com/Chiel92/vim-autoformat -[submodule "bundle/vim-easytags"] - path = bundle/vim-easytags - url = https://github.com/xolox/vim-easytags.git [submodule "bundle/vim-go"] path = bundle/vim-go url = https://github.com/fatih/vim-go.git @@ -37,3 +34,6 @@ [submodule "bundle/vim-tmux-clipboard"] path = bundle/vim-tmux-clipboard url = https://github.com/roxma/vim-tmux-clipboard.git +[submodule "bundle/gen_tags.vim"] + path = bundle/gen_tags.vim + url = https://github.com/jsfaint/gen_tags.vim.git @@ -44,6 +44,6 @@ If you're not using vim 8; create a `.vimrc` with: git submodule deinit -f bundle/foo git rm -r bundle/foo - git commit -am "Removed plugin" + git commit -am "Removed plugin" rm -rf .git/modules/bundle/foo diff --git a/bundle/gen_tags.vim b/bundle/gen_tags.vim new file mode 160000 +Subproject b64ffe4134d14d6695755cdc0490ea61a4ccad1 diff --git a/bundle/vim-easytags b/bundle/vim-easytags deleted file mode 160000 -Subproject 72a8753b5d0a951e547c51b13633f680a95b548 @@ -58,16 +58,14 @@ noremap <C-F6> :SyntasticCheck<CR> "" vim-autoformat noremap <C-F5> :Autoformat<CR> -"" vim-easytags -" use local tags if found -set tags=./.tags; -" local tags ALWAYS (unless no write permisssions) -let g:easytags_dynamic_files = 2 -" try async updates -let g:easytags_async = 1 - +" only ctags +let g:loaded_gentags#gtags = 1 +" auto please +let g:gen_tags#ctags_auto_gen = 1 +" some info +let g:gen_tags#statusline = 1 " build tags -map <C-F12> :!ctags -R -f ./.tags .<CR> +map <C-F12> :GenCtags<CR> " enable omnicompletion set omnifunc=syntaxcomplete#Complete |