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 /autoload | |
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 'autoload')
-rw-r--r-- | autoload/xolox/easytags.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index df109be..10bb650 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -349,13 +349,13 @@ function! xolox#easytags#add_tagged_file(filename) " {{{2 endfunction function! xolox#easytags#get_tagsfile() " {{{2 + let tagsfile = expand(g:easytags_file) if g:easytags_dynamic_files let files = tagfiles() if len(files) > 0 - return files[0] + let tagsfile = files[0] endif endif - let tagsfile = expand(g:easytags_file) if filereadable(tagsfile) && filewritable(tagsfile) != 1 let message = "The tags file %s isn't writable!" throw printf(message, fnamemodify(tagsfile, ':~')) |