From dec1f840fb226f6d42b0d4200e8485e64fadaa2a Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Mon, 25 Mar 2013 22:27:12 +1300 Subject: [PATCH] Version 2.5 --- autoload/tagbar.vim | 2 +- doc/tagbar.txt | 29 ++++++++++++++++++++++++++++- plugin/tagbar.vim | 2 +- syntax/tagbar.vim | 2 +- 4 files changed, 31 insertions(+), 4 deletions(-) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index ec7ac0e..4de4abd 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.1 +" Version: 2.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/doc/tagbar.txt b/doc/tagbar.txt index 3ca98a7..91e3fe7 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.1 +Version: 2.5 ============================================================================== Contents *tagbar* *tagbar-contents* @@ -1067,6 +1067,33 @@ file. ============================================================================== 8. History *tagbar-history* +2.5 (2013-03-25) + - New command :TagbarTogglePause to freeze Tagbar in its current state so + you can switch to other files while keeping the old information + displayed for reference. (Kian Ryan) + - New command :TagbarCurrentTag which reports the same information as + currenttag(). + - New option tagbar_indent to configure the indentation depth of the tags. + - New option tagbar_show_visibility to allow disabling the visibility + symbols. + - Files are now cached locally to avoid additional slowdowns for slow + connections. This also makes it possible to use Tagbar with files + accessed through Netrw. + - Execute ctags again even if the previous run reported errors, in case it + was a parse error that has since been fixed. If the error persists, + don't display it again. + - Improved window switching and Vim exit behaviours. (Techlive Zheng) + - The currenttag() function now can show the prototype instead of the + actual tag, which can be useful in some cases where ctags doesn't report + all the interesting information. + - The prototype shown in the tooltip or command line should now always be + complete, even if it is spread out over more than one line in the source + file. + - The TagbarAccessPublic etc. highlight groups have been renamed to + TagbarVisibilityPublic etc. to keep them in line with standard + terminology. The old names are still supported. + - Various smaller improvements and bugfixes. + 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 diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index a594cb4..28f6560 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.1 +" Version: 2.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 d341f1a..df53682 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.1 +" Version: 2.5 scriptencoding utf-8