aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-27 17:21:41 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-07-01 09:43:38 +1200
commitfcff50cb31eaef4496ad3dc42bd36200ef231d64 (patch)
treee6c98d62c91ed8b5482807a65cc519d6492eddf3
parentAdopt argument unpacking conventions (diff)
downloaddotfiles-fcff50cb31eaef4496ad3dc42bd36200ef231d64.tar.gz
dotfiles-fcff50cb31eaef4496ad3dc42bd36200ef231d64.zip
Restore missing // sigils
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 0fdcec3c..a8293311 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -143,12 +143,12 @@ if has('unix')
endif
let s:directory = s:cache.'/swap'
call s:Mkpath(s:directory)
-execute 'set directory^='.s:EscItemExec(s:directory)
+execute 'set directory^='.s:EscItemExec(s:directory).'//'
if has('persistent_undo')
set undofile
let s:undodir = s:cache.'/undo'
call s:Mkpath(s:undodir)
- execute 'set undodir^='.s:EscItemExec(s:undodir)
+ execute 'set undodir^='.s:EscItemExec(s:undodir).'//'
endif
filetype plugin indent on
function! s:ReloadFileType() abort