Skip to content

Tags: xolox/vim-easytags

Tags

3.11

Toggle 3.11's commit message
Try to support `Universal Ctags' (issue #123)

Refer to issue 123 on GitHub for details:
  #123

3.10.1

Toggle 3.10.1's commit message
Improve documentation of `easytags_dynamic_files' option

See also issue 92 and issue 116 on GitHub:
 - #92
 - #116

3.10

Toggle 3.10's commit message
Merge pull request #111: Give precedence to dynamic files over storag…

…e by filetype

I rewrote quite a bit of code in this pull request but I didn't change
the behavior introduced by @cornerman (at least it was not my intention
to do so). The main reason for rewriting was that the name
xolox#easytags#get_global_tagsfile() "was a lie" because it could
select either a file type specific tags files or the global tags file. I
like functions whose name captures what they do so had to change things
around in order to merge pull request 111 without having that name
bother me :-).

See also pull request 111 on GitHub:
  #111

Which came forth from issue 102:
  #102

3.9.1

Toggle 3.9.1's commit message
Improve handling & docs of g:easytags_opts option (issue #98)

3.9

Toggle 3.9's commit message
Add g:easytags_opts option (issue #98)

See also issue #98 on GitHub:
  #98

3.8.3

Toggle 3.8.3's commit message
Improve Perl function tag highlighting (more accurate now)

As suggested in issue #97, for details see:
  #97

3.8.2

Toggle 3.8.2's commit message
Bug fix for xolox#easytags#filetypes#find_ctags_aliases()

When a canonical Vim file type mapped to a group of file types,
the group was returned without the canonical file type :-s

See also issue #91 on GitHub:
  #91

3.8

Toggle 3.8's commit message
Change file type canonicalization to treat C as C++

Please refer to the inline comments for more details.
This will hopefully fix issue #91 on GitHub:

  #91

PS. I've completely removed the objc/objcpp grouping because I don't know
    these languages so I don't know what grouping would be correct anyway.
    Until a user with an informed opinion chimes in it's better to just
    remove this grouping.

3.7

Toggle 3.7's commit message
Support for Perl highlighting (thanks to Jessica Kathleen McIntosh, s…

…ee issue #97)

See issue #97 on GitHub:
  #97

3.6.7

Toggle 3.6.7's commit message
Merge pull request #95: Add g:easytags_suppress_report option