diff options
author | Peter Odding <peter@peterodding.com> | 2010-08-11 12:10:59 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2010-08-11 12:10:59 +0200 |
commit | 2f73c57c857fc0a4f3bed718a90f0296890778a3 (patch) | |
tree | d9814a69774b8c468e12ea406aabe1669e15722f /easytags.vim | |
parent | a536d7740c101716cfdf6759359c0426b2272ae1 (diff) | |
download | vim-easytags-2f73c57c857fc0a4f3bed718a90f0296890778a3.tar.gz |
Support scanning & highlighting of struct/class members
Diffstat (limited to 'easytags.vim')
-rw-r--r-- | easytags.vim | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/easytags.vim b/easytags.vim index f04b7b7..f12511c 100644 --- a/easytags.vim +++ b/easytags.vim @@ -1,10 +1,10 @@ " Vim plug-in " Author: Peter Odding <peter@peterodding.com> -" Last Change: August 10, 2010 +" Last Change: August 11, 2010 " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.1 +" Version: 2.1.2 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip @@ -46,6 +46,10 @@ if !exists('g:easytags_autorecurse') let g:easytags_autorecurse = 0 endif +if !exists('g:easytags_include_members') + let g:easytags_include_members = 0 +endif + function! s:InitEasyTags(version) " Check that the location of Exuberant Ctags has been configured or that the " correct version of the program exists in one of its default locations. |