From 90de8f25969caa2871c37a54bade7e5ada63ba17 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Tue, 2 Apr 2019 17:21:49 +0100 Subject: vim-easy tags is not maintained anymore, welcome gent_tags.vim --- .gitmodules | 6 +++--- README.md | 2 +- bundle/gen_tags.vim | 1 + bundle/vim-easytags | 1 - vimrc | 16 +++++++--------- 5 files changed, 12 insertions(+), 14 deletions(-) create mode 160000 bundle/gen_tags.vim delete mode 160000 bundle/vim-easytags 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 diff --git a/README.md b/README.md index e9d2716..b40bc45 100644 --- a/README.md +++ b/README.md @@ -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 index 0000000..b64ffe4 --- /dev/null +++ b/bundle/gen_tags.vim @@ -0,0 +1 @@ +Subproject commit b64ffe4134d14d6695755cdc0490ea61a4ccad1f diff --git a/bundle/vim-easytags b/bundle/vim-easytags deleted file mode 160000 index 72a8753..0000000 --- a/bundle/vim-easytags +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 72a8753b5d0a951e547c51b13633f680a95b5483 diff --git a/vimrc b/vimrc index e19d851..332ecb2 100644 --- a/vimrc +++ b/vimrc @@ -58,16 +58,14 @@ noremap :SyntasticCheck "" vim-autoformat noremap :Autoformat -"" 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 :!ctags -R -f ./.tags . +map :GenCtags " enable omnicompletion set omnifunc=syntaxcomplete#Complete -- cgit v1.2.3