diff options
author | Peter Odding <peter@peterodding.com> | 2011-06-13 02:06:48 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2011-06-13 02:06:48 +0200 |
commit | dc167e4d42265f9d9fbe764570b1b6b199794e98 (patch) | |
tree | b1a61eb54fb483bd40b56d2083e09a995c2e64bb /plugin | |
parent | 1de4f3d23be591f54bc515f593083bc01f8bdf71 (diff) | |
download | vim-easytags-dc167e4d42265f9d9fbe764570b1b6b199794e98.tar.gz |
Minor bug fix for xolox#easytags#get_tagsfile()
The plug-in now checks if dynamic tags files are writable.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/easytags.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 9f57c38..d3edde3 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -4,7 +4,7 @@ " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.2.12 +" Version: 2.2.13 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip @@ -76,7 +76,7 @@ endfunction function! s:CheckCtags(name, version) " Not every executable out there named `ctags' is in fact Exuberant Ctags. " This function makes sure it is because the easytags plug-in requires the - " --list-languages option. + " --list-languages option (and more). if executable(a:name) let command = a:name . ' --version' try |