diff --git a/doc/tagbar.txt b/doc/tagbar.txt index aaa99dc..805fa7a 100644 --- a/doc/tagbar.txt +++ b/doc/tagbar.txt @@ -3,7 +3,7 @@ Author: Jan Larres Licence: Vim licence, see |license| Homepage: http://majutsushi.github.com/tagbar/ -Version: 1.2 +Version: 1.5 ============================================================================== Contents *tagbar* *tagbar-contents* @@ -613,6 +613,18 @@ files. ============================================================================== 8. History *tagbar-history* +1.5 (2011-03-06) + - Type definitions can now include a path to a file with the ctags + definition. This is especially useful for ftplugins that can now ship + with a complete ctags and Tagbar configuration without requiring user + intervention. Thanks to Jan Christoph Ebersbach for the suggestion. + - Added autofocus setting by Taybin Rutkin. This will put the cursor in + the Tagbar window when it is opened. + - The "scopes" field is no longer needed in type definitions, the + information is already there in "scope2kind". Existing definitions will + be ignored. + - Some fixes and improvements related to redrawing and window switching. + 1.2 (2011-02-28) - Fix typo in Ruby definition diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index 381fd91..d0371e8 100644 --- a/plugin/tagbar.vim +++ b/plugin/tagbar.vim @@ -4,7 +4,7 @@ " Author: Jan Larres " Licence: Vim licence " Website: http://majutsushi.github.com/tagbar/ -" Version: 1.2 +" Version: 1.5 " Note: This plugin was heavily inspired by the 'Taglist' plugin by " Yegappan Lakshmanan and uses a small amount of code from it. " diff --git a/syntax/tagbar.vim b/syntax/tagbar.vim index e6b94f9..9b7b0ab 100644 --- a/syntax/tagbar.vim +++ b/syntax/tagbar.vim @@ -3,7 +3,7 @@ " Author: Jan Larres " Licence: Vim licence " Website: http://majutsushi.github.com/tagbar/ -" Version: 1.2 +" Version: 1.5 if exists("b:current_syntax") finish