From d59dd741c1edc02543f5669eda866aa177289d6f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 17 Jan 2018 16:29:23 +1300 Subject: Refactor directory creation in plugins No functional changes here, just removing a little duplicate code. --- vim/plugin/auto_undodir.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vim/plugin/auto_undodir.vim') diff --git a/vim/plugin/auto_undodir.vim b/vim/plugin/auto_undodir.vim index 4382fe18..a38dce02 100644 --- a/vim/plugin/auto_undodir.vim +++ b/vim/plugin/auto_undodir.vim @@ -37,12 +37,12 @@ if !isdirectory(expand(s:undodir)) " (Fortunately, Unix and Windows are the only OS types in the world) elseif has('*shellescape') if has('unix') - silent! execute '!mkdir -m 0700 -p ' - \ . shellescape(expand(s:undodir)) + let l:mkdir = '!mkdir -m 0700 -p ' elseif has('win32') || has('win64') - silent! execute '!mkdir ' - \ . shellescape(expand(s:undodir)) + let l:mkdir = '!mkdir ' endif + silent! execute l:mkdir + \ . shellescape(expand(s:undodir)) endif endif -- cgit v1.2.3