aboutsummaryrefslogtreecommitdiffstats
path: root/autoload/xolox/easytags
Commit message (Collapse)AuthorAgeFilesLines
* Add g:easytags_opts option (issue #98)Peter Odding2014-11-131-4/+5
| | | | | See also issue #98 on GitHub: https://github.com/xolox/vim-easytags/issues/98
* Bug fix for xolox#easytags#filetypes#find_ctags_aliases()Peter Odding2014-10-211-1/+2
| | | | | | | | 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: https://github.com/xolox/vim-easytags/issues/91
* Make xolox#easytags#filetypes#add_group() easier to understandPeter Odding2014-10-211-4/+5
|
* Change file type canonicalization to treat C as C++Peter Odding2014-10-201-3/+17
| | | | | | | | | | | | Please refer to the inline comments for more details. This will hopefully fix issue #91 on GitHub: https://github.com/xolox/vim-easytags/issues/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.
* Bug fix for issue #90 caused by pull request #84 (async refactor)Peter Odding2014-08-081-2/+7
| | | | | | | | See issue 90 on GitHub: https://github.com/xolox/vim-easytags/issues/90 This was caused by the async refactor: https://github.com/xolox/vim-easytags/pull/84
* Automatically create missing directories when writing tags filesPeter Odding2014-06-301-0/+5
|
* Refactor atomic file updates into a feature of vim-miscPeter Odding2014-06-301-3/+4
|
* Bug fix for invalid tags filtering (cache.exists() was broken, now fixed)Peter Odding2014-06-291-5/+11
|
* Merge pull request #87: Avoid error about empty Dictionary keyPeter Odding2014-06-291-4/+7
|\
| * FIX: Avoid error about empty Dictionary key.Ingo Karkat2014-06-231-0/+3
|/ | | | I had a degenerate tags file that had *two* tabs separating the tag from the filespec column; parsing that yields an empty filespec, which caused E713. There used to be an explicit check for that; with your recent refactorings, one instance of that check was lost. Here it is again!
* Support for synchronous + asynchronous tags file updates (huge refactoring)Peter Odding2014-06-223-0/+410
See also pull request #49 for my previous and failed attempt: https://github.com/xolox/vim-easytags/pull/49