1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-27 00:42:33 +01:00

Make use of jekyll

This commit is contained in:
Jan Larres
2011-11-23 22:28:00 +13:00
parent b8b0e92f72
commit 307e58a670
12 changed files with 173 additions and 175 deletions

View File

@@ -0,0 +1,5 @@
---
title: 1.0
---
- Initial release

View File

@@ -0,0 +1,6 @@
---
title: 1.1
---
- Don't lose syntax highlighting when ':syntax enable' is called
- Allow expanding the Vim window when Tagbar is opened

View File

@@ -0,0 +1,5 @@
---
title: 1.2
---
- Fix typo in Ruby definition

View File

@@ -0,0 +1,14 @@
---
title: 1.5
---
- 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.

View File

@@ -0,0 +1,5 @@
---
title: 2.0.1
---
- Fixed sorting bug when 'ignorecase' is set

View File

@@ -0,0 +1,14 @@
---
title: 2.0
---
- Folding now works correctly. Folds will be preserved when leaving the
Tagbar window and when switching between files. Also tag types can be
configured to be folded by default, which is useful for things like
includes and imports.
- DoctorJS/jsctags and other compatible programs are now supported.
- All of the highlight groups can now be overridden.
- Added keybinding to quickly jump to next/previous top-level tag.
- Added Taglist's "p" keybinding for jumping to a tag without leaving the
Tagbar window.
- Several bugfixes and other small improvements.

View File

@@ -0,0 +1,18 @@
---
title: 2.1
---
- Make Tagbar work in (hopefully) all cases under Windows
- Handle cases where 'encoding' is different from system encoding, for
example on a Chinese Windows with 'encoding' set to "utf-8" (see manual
for details in case it doesn't work out-of-the-box)
- Fixed a bug with the handling of subtypes like "python.django"
- If a session got saved with Tagbar open it now gets restored properly
- Locally reset foldmethod/foldexpr in case foldexpr got set to something
expensive globally
- Tagbar now tries hard to go to the correct window when jumping to a tag
- Explain some possible issues with the current jsctags version in the
manual
- Explicitly check for some possible configuration problems to be able to
give better feedback
- A few other small fixes