diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index f6e3069..cc3cd3c 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -4,7 +4,7 @@ " Author: Jan Larres " Licence: Vim licence " Website: http://majutsushi.github.com/tagbar/ -" Version: 2.4 +" Version: 2.4.1 " 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/doc/tagbar.txt b/doc/tagbar.txt index b64888b..1401f39 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: 2.4 +Version: 2.4.1 ============================================================================== Contents *tagbar* *tagbar-contents* @@ -1022,6 +1022,14 @@ file. ============================================================================== 8. History *tagbar-history* +2.4.1 (2012-07-16) + - Fixed some bugs related to the currenttag() function when it was called + before the rest of the plugin was loaded. Also fail silently in case + something goes wrong so the statusline doesn't get messed up. + - In certain cases highlighting tags in deeply nested folds could cause an + error message. + - Spellchecking is now correctly getting disabled in the Tagbar window. + 2.4 (2012-06-17) - New function tagbar#currenttag() that reports the current tag, for example for putting it into the statusline. diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index b5065b2..cc2fa8a 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: 2.4 +" Version: 2.4.1 " 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 7e551a4..8af6430 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: 2.4 +" Version: 2.4.1 scriptencoding utf-8