# HG changeset patch # User Ludovic Chabant # Date 1409586528 25200 # Node ID 1f6ecd4258d7a5b33096a8d02cc9ae78e8e52757 # Parent bd136cb41034b5cdef3348e7370ee283d2d167e1 Quick hack fix for bug on load. diff -r bd136cb41034 -r 1f6ecd4258d7 plugin/autotags.vim --- a/plugin/autotags.vim Sun Aug 31 21:47:39 2014 -0700 +++ b/plugin/autotags.vim Mon Sep 01 08:48:48 2014 -0700 @@ -76,7 +76,7 @@ if !exists('g:autotags_cache_dir') let g:autotags_cache_dir = '' else - let g:autotags_cache_dir = s:stripslash(g:autotags_cache_dir) + let g:autotags_cache_dir = fnamemodify(g:autotags_cache_dir, ':s?[/\\]$??') endif if g:autotags_cache_dir != '' && !isdirectory(g:autotags_cache_dir)