changeset 369:b87c358bd0ca

Fix/improve ctagsrc for gutentags.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 17 Feb 2017 17:22:44 -0800
parents 12a3a0e31f8e
children 4cbef98921a8
files .hgsub .hgsubstate vim/ctagsrc vim/vimrc
diffstat 4 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/.hgsub	Thu Feb 16 18:49:36 2017 -0800
+++ b/.hgsub	Fri Feb 17 17:22:44 2017 -0800
@@ -30,7 +30,7 @@
 vim/bundle/interestingwords = [git]https://github.com/vasconcelloslf/vim-interestingwords.git
 vim/bundle/jinja = [git]https://github.com/mitsuhiko/vim-jinja.git
 vim/bundle/python-pep8-indent = [git]https://github.com/hynek/vim-python-pep8-indent.git
-vim/bundle/ctrlp-py-matcher = [git]https://github.com/FelikZ/ctrlp-py-matcher
+vim/bundle/ctrlp-py-matcher = [git]https://github.com/ludovicchabant/ctrlp-py-matcher.git
 
 vim/bundle/gutentags = https://bitbucket.org/ludovicchabant/vim-gutentags
 vim/bundle/lawrencium = https://bitbucket.org/ludovicchabant/vim-lawrencium
--- a/.hgsubstate	Thu Feb 16 18:49:36 2017 -0800
+++ b/.hgsubstate	Fri Feb 17 17:22:44 2017 -0800
@@ -16,11 +16,11 @@
 b8dff40f69f1873effbed97c759a8452ecb240ed vim/bundle/colorschemes
 73e0d9a9d1f51b6cc9dc965f62669194ae851cb1 vim/bundle/commentary
 a86688cdc843a62485b9e413a78aea77e32a8137 vim/bundle/ctrlp
-a0710a4937ab9dc10bc0a8b56b41fcc88534147c vim/bundle/ctrlp-py-matcher
+27a7cac20253d96af5e3801055d417a1ad473fa8 vim/bundle/ctrlp-py-matcher
 af9786ee5780bf0cbafbd7b341c2b5234d18c1c0 vim/bundle/easymotion
 f44845e4408aae03e018e98afb7fbf0c2ee87dd5 vim/bundle/fugitive
 9dd2d48255fcc3ac5122f6028dc238fabcccd861 vim/bundle/gundo
-bba76de4371a45658e0e095e337d375b35249f32 vim/bundle/gutentags
+1b980f5071a052a6e7e7c5457a7857cbf6257bb9 vim/bundle/gutentags
 1f2e47c78c2faf90ff419c2f4e1241094844678c vim/bundle/haml
 adebc6ceae0aed69bb1cde7fb89058fb1546129e vim/bundle/interestingwords
 8a8f0ed97c1751d304cf5b7241f2fe27b0e61f81 vim/bundle/jinja
--- a/vim/ctagsrc	Thu Feb 16 18:49:36 2017 -0800
+++ b/vim/ctagsrc	Fri Feb 17 17:22:44 2017 -0800
@@ -1,5 +1,9 @@
+--c-kinds=-nev
+--c++-kinds=-nev
+--c#-kinds=-ne
 --python-kinds=cfm
 --javascript-kinds=cfm
+
 --fields=+l
 --fields=+n
 
--- a/vim/vimrc	Thu Feb 16 18:49:36 2017 -0800
+++ b/vim/vimrc	Fri Feb 17 17:22:44 2017 -0800
@@ -279,7 +279,7 @@
 
 let g:gutentags_exclude = ['venv', 'build', 'static', 'node_modules']
 let g:gutentags_cache_dir = s:vim_home.'/tags'
-let g:gutentags_options_file = s:vim_home.'/ctagsrc'
+let g:gutentags_ctags_extra_args = ['--options='.s:vim_home.'/ctagsrc']
 
 " }}}