diff options
author | Peter Odding <peter@peterodding.com> | 2011-06-13 18:18:49 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2011-06-13 18:18:49 +0200 |
commit | 1194a6b8a2e21db24fe051c0679d17b8a6878ebf (patch) | |
tree | 60351235198e833595d81016b2d4b270a5d61f75 /plugin | |
parent | 4df41adeff4579d16d0a2ad125e13b7c7a90344f (diff) | |
download | vim-easytags-1194a6b8a2e21db24fe051c0679d17b8a6878ebf.tar.gz |
:TagsByFileType to create filetype specific tagsfiles from global tagsfile
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/easytags.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 61fe3ed..9697967 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -4,7 +4,7 @@ " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.3 +" Version: 2.3.1 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip @@ -145,6 +145,7 @@ call xolox#easytags#register(1) command! -bar -bang -nargs=* -complete=file UpdateTags call xolox#easytags#update(0, <q-bang> == '!', [<f-args>]) command! -bar HighlightTags call xolox#easytags#highlight() +command! -bang TagsByFileType call xolox#easytags#by_filetype(<q-bang> == '!') " Automatic commands. {{{1 |