Replace easytags with gutentags

This commit is contained in:
Kevin MacMartin 2022-04-15 14:23:23 -04:00
parent 13f7b8f1ed
commit 0edca2bc27
6 changed files with 6 additions and 11 deletions

9
.gitmodules vendored
View file

@ -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

View file

@ -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.

@ -1 +0,0 @@
Subproject commit 72a8753b5d0a951e547c51b13633f680a95b5483

@ -0,0 +1 @@
Subproject commit 50705e8ebb7038b31314f416d1bddd9cb9154049

@ -1 +0,0 @@
Subproject commit 3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b

View file

@ -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
"}}}