From 0edca2bc274d9f07230ec6465dc11fec667c6fb5 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 15 Apr 2022 14:23:23 -0400 Subject: [PATCH] Replace easytags with gutentags --- .gitmodules | 9 +++------ README.md | 3 +-- vim/bundle/vim-easytags | 1 - vim/bundle/vim-gutentags | 1 + vim/bundle/vim-misc | 1 - vim/config/plugins.vim | 2 +- 6 files changed, 6 insertions(+), 11 deletions(-) delete mode 160000 vim/bundle/vim-easytags create mode 160000 vim/bundle/vim-gutentags delete mode 160000 vim/bundle/vim-misc diff --git a/.gitmodules b/.gitmodules index 797e65a..1a17cdc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -43,12 +43,6 @@ [submodule "vim/bundle/vim-polyglot-darkcloud"] path = vim/bundle/vim-polyglot-darkcloud url = https://github.com/prurigro/vim-polyglot-darkcloud.git -[submodule "vim/bundle/vim-misc"] - path = vim/bundle/vim-misc - url = https://github.com/xolox/vim-misc.git -[submodule "vim/bundle/vim-easytags"] - path = vim/bundle/vim-easytags - url = https://github.com/xolox/vim-easytags.git [submodule "vim/bundle/MatchTagAlways"] path = vim/bundle/MatchTagAlways url = https://github.com/Valloric/MatchTagAlways.git @@ -103,3 +97,6 @@ [submodule "vim/bundle/neco-syntax"] path = vim/bundle/neco-syntax url = https://github.com/Shougo/neco-syntax.git +[submodule "vim/bundle/vim-gutentags"] + path = vim/bundle/vim-gutentags + url = https://github.com/ludovicchabant/vim-gutentags.git diff --git a/README.md b/README.md index 8bab726..98f8b77 100644 --- a/README.md +++ b/README.md @@ -174,11 +174,10 @@ For a complete list of mappings specific to **darkcloud-vimconfig**, check the l * [tcommand_vim](https://github.com/tomtom/tcommand_vim): Select commands, menu items etc. from a list. * [tlib_vim](https://github.com/tomtom/tlib_vim): Some utility functions for VIM. * [tcomment_vim](https://github.com/tomtom/tcomment_vim): File-type sensible comments that can be easily toggled on and off for blocks of text. -* [vim-easytags](https://github.com/xolox/vim-easytags): Automated tag file generation and syntax highlighting of tags in Vim. - * [vim-misc](https://github.com/xolox/vim-misc): Miscellaneous auto-load Vim scripts required by vim-easytags. * [vimfiler.vim](https://github.com/Shougo/vimfiler.vim): A curses-style file manager for vim that runs on it's own or in a sidebar and can associate handlers for file types. * [unite.vim](https://github.com/Shougo/unite.vim): A library used by Vim Filer to help build its user interface. * [vim-fugitive](https://github.com/tpope/vim-fugitive): A wrapper integrating git into vim in such a way as to provide features neither of them could offer on their own. +* [vim-gutentags](https://github.com/xolox/vim-easytags): A plugin that takes care of the much needed management of tags files in Vim. * [vim-move](https://github.com/matze/vim-move): Provides a few convenient ways to move selected text. * [vim-pathogen](https://github.com/tpope/vim-pathogen): A plugin to load other plugins while keeping them isolated in their own directory structure rather than all dumped together. * [vim-polyglot-darkcloud](https://github.com/prurigro/vim-polyglot-darkcloud): The darkcloud-vimconfig fork of a meta-package that attempts to provide the best syntax plugins for each file type. diff --git a/vim/bundle/vim-easytags b/vim/bundle/vim-easytags deleted file mode 160000 index 72a8753..0000000 --- a/vim/bundle/vim-easytags +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 72a8753b5d0a951e547c51b13633f680a95b5483 diff --git a/vim/bundle/vim-gutentags b/vim/bundle/vim-gutentags new file mode 160000 index 0000000..50705e8 --- /dev/null +++ b/vim/bundle/vim-gutentags @@ -0,0 +1 @@ +Subproject commit 50705e8ebb7038b31314f416d1bddd9cb9154049 diff --git a/vim/bundle/vim-misc b/vim/bundle/vim-misc deleted file mode 160000 index 3e6b8fb..0000000 --- a/vim/bundle/vim-misc +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b diff --git a/vim/config/plugins.vim b/vim/config/plugins.vim index 9496864..0131ffa 100644 --- a/vim/config/plugins.vim +++ b/vim/config/plugins.vim @@ -29,7 +29,7 @@ scriptencoding utf-8 "load plugins in vim/bundle/ and vim/bundle.user/ execute pathogen#infect('bundle/{}', 'bundle.user/{}') - "set the locations for easytags, tagbar and other plugins to look for tag files + "set the locations for gutentags, tagbar and other plugins to look for tag files set tags=./.tags;,~/.vim/tags "}}}