aboutsummaryrefslogtreecommitdiffstats
path: root/autoload/xolox/easytags.vim
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2014-06-29 21:34:10 +0200
committerPeter Odding <peter@peterodding.com>2014-06-29 21:34:10 +0200
commitac9f93f49c2ee327c7514fc62501c528f7dc48cf (patch)
tree698f89ad2b83930c2ae5e9ccf9b9737bbb7d3213 /autoload/xolox/easytags.vim
parent107b23366136d6dcca661cae242b1899a7cc61f5 (diff)
parent02e772a7565db208c197a07885686b729fa7e237 (diff)
downloadvim-easytags-ac9f93f49c2ee327c7514fc62501c528f7dc48cf.tar.gz
Merge pull request #86: Ensure full absolute tagsfile filespec in async mode
Diffstat (limited to 'autoload/xolox/easytags.vim')
-rw-r--r--autoload/xolox/easytags.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim
index 73d538e..1cd6071 100644
--- a/autoload/xolox/easytags.vim
+++ b/autoload/xolox/easytags.vim
@@ -378,7 +378,7 @@ function! xolox#easytags#get_tagsfile() " {{{2
let message = "The tags file %s isn't writable!"
throw printf(message, fnamemodify(tagsfile, ':~'))
endif
- return tagsfile
+ return xolox#misc#path#absolute(tagsfile)
endfunction
function! xolox#easytags#syntax_groups_to_ignore() " {{{2