From 9c60ab25018749dbedfa716970ea95eb963abd73 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Mon, 25 Mar 2013 22:27:12 +1300 Subject: [PATCH] Version 2.5 --- _posts/2013-03-25-2.5.markdown | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _posts/2013-03-25-2.5.markdown diff --git a/_posts/2013-03-25-2.5.markdown b/_posts/2013-03-25-2.5.markdown new file mode 100644 index 0000000..94b2259 --- /dev/null +++ b/_posts/2013-03-25-2.5.markdown @@ -0,0 +1,28 @@ +--- +title: 2.5 +--- + +- 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.