diff options
author | Peter Odding <peter@peterodding.com> | 2010-06-09 08:01:39 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2010-06-09 08:01:39 +0200 |
commit | 6dd0b7a882d8102f5cff1b2acc927b91cc03e514 (patch) | |
tree | c358e86e0d2c364df2981004589b5701a7f77325 /easytags.vim | |
parent | 65ad69ac288eaa70b1469739ce6ea601ab852a2e (diff) | |
download | vim-easytags-6dd0b7a882d8102f5cff1b2acc927b91cc03e514.tar.gz |
Added `easytags_ignored_filetypes` option
While writing a LaTeX document I found out that Exuberant Ctags was
corrupting my tags file by writing invalid entries. Because half my
self-developed Vim plug-ins deal with Exuberant Ctags integration
which I use constantly this broke my whole environment :-)
Since the main point of easytags.vim is to fully automate tags
generation, corrupt files that need to be repaired by hand are
unacceptable. Therefor I've added an option to enable ignoring selected
file types and defined the default to exclude `*.tex` files.
If you disagree with me, feel free to set the option
`easytags_ignored_filetypes` to an empty string,
in which case no file types will be ignored.
Diffstat (limited to 'easytags.vim')
-rw-r--r-- | easytags.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/easytags.vim b/easytags.vim index 31bf9d0..9373d9a 100644 --- a/easytags.vim +++ b/easytags.vim @@ -1,6 +1,6 @@ " Vim plug-in " Maintainer: Peter Odding <peter@peterodding.com> -" Last Change: June 6, 2010 +" Last Change: June 8, 2010 " URL: http://peterodding.com/code/vim/easytags " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT @@ -36,6 +36,10 @@ if !exists('g:easytags_on_cursorhold') let g:easytags_on_cursorhold = 1 endif +if !exists('g:easytags_ignored_filetypes') + let g:easytags_ignored_filetypes = '^tex$' +endif + " Before sourcing the rest of the plug-in first check that the location of the " "Exuberant Ctags" program has been configured or that the program exists in " one of its default locations. |