aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-19 21:16:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-19 21:16:37 +1200
commit5b3d271efb68399357990e708f39e3142976494e (patch)
tree825cb55608f3329c518ae5498f01930d69ef2a5a /vim/vimrc
parentSwap two terms around (diff)
downloaddotfiles-5b3d271efb68399357990e708f39e3142976494e.tar.gz
dotfiles-5b3d271efb68399357990e708f39e3142976494e.zip
Remove unneeded expand()
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index e5b38cb6..5121cce6 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -252,7 +252,7 @@ endif
" provide as a quoted parameter to the function.
"
function! s:Establish(name) abort
- let name = expand(a:name)
+ let name = a:name
let path = 'p'
let prot = 0700
if !isdirectory(name) && exists('*mkdir')