diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-13 22:26:07 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-13 22:26:07 +1300 |
commit | d30b6a744d9de88bde1a5d4cddf873c867f5c3d2 (patch) | |
tree | 9aee0daea29566a6d28706dcb8f4ac390536e6c5 /vim/plugin | |
parent | Merge branch 'feature/vim-ftdetect' into develop (diff) | |
download | dotfiles-d30b6a744d9de88bde1a5d4cddf873c867f5c3d2.tar.gz dotfiles-d30b6a744d9de88bde1a5d4cddf873c867f5c3d2.zip |
Strip trailing whitespace
Diffstat (limited to 'vim/plugin')
-rw-r--r-- | vim/plugin/auto_backupdir.vim | 6 | ||||
-rw-r--r-- | vim/plugin/auto_swapdir.vim | 6 | ||||
-rw-r--r-- | vim/plugin/auto_undodir.vim | 6 | ||||
-rw-r--r-- | vim/plugin/mail_mutt.vim | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/vim/plugin/auto_backupdir.vim b/vim/plugin/auto_backupdir.vim index d15c3150..6f5aca97 100644 --- a/vim/plugin/auto_backupdir.vim +++ b/vim/plugin/auto_backupdir.vim @@ -18,7 +18,7 @@ else " This is imperfect in that it will break if you have a backslashed comma in " the first component of your &runtimepath, but if you're doing that, you " probably already have way bigger problems - let s:backupdir + let s:backupdir \ = strpart(&runtimepath, 0, stridx(&runtimepath, ',')) \ . '/backup' endif @@ -33,10 +33,10 @@ if !isdirectory(expand(s:backupdir)) " Failing that, use an OS-dependent command " (Fortunately, Unix and Windows are the only OS types in the world) elseif has('unix') - silent! execute '!mkdir -m 0700 -p ' + silent! execute '!mkdir -m 0700 -p ' \ . shellescape(expand(s:backupdir)) elseif has('win32') || has('win64') - silent! execute '!mkdir ' + silent! execute '!mkdir ' \ . shellescape(expand(s:backupdir)) endif diff --git a/vim/plugin/auto_swapdir.vim b/vim/plugin/auto_swapdir.vim index b5f9ce3a..4fa209c1 100644 --- a/vim/plugin/auto_swapdir.vim +++ b/vim/plugin/auto_swapdir.vim @@ -18,7 +18,7 @@ else " This is imperfect in that it will break if you have a backslashed comma in " the first component of your &runtimepath, but if you're doing that, you " probably already have way bigger problems - let s:swapdir + let s:swapdir \ = strpart(&runtimepath, 0, stridx(&runtimepath, ',')) \ . '/swap' endif @@ -33,10 +33,10 @@ if !isdirectory(expand(s:swapdir)) " Failing that, use an OS-dependent command " (Fortunately, Unix and Windows are the only OS types in the world) elseif has('unix') - silent! execute '!mkdir -m 0700 -p ' + silent! execute '!mkdir -m 0700 -p ' \ . shellescape(expand(s:swapdir)) elseif has('win32') || has('win64') - silent! execute '!mkdir ' + silent! execute '!mkdir ' \ . shellescape(expand(s:swapdir)) endif diff --git a/vim/plugin/auto_undodir.vim b/vim/plugin/auto_undodir.vim index cf8d896a..8e81fde6 100644 --- a/vim/plugin/auto_undodir.vim +++ b/vim/plugin/auto_undodir.vim @@ -21,7 +21,7 @@ else " This is imperfect in that it will break if you have a backslashed comma in " the first component of your &runtimepath, but if you're doing that, you " probably already have way bigger problems - let s:undodir + let s:undodir \ = strpart(&runtimepath, 0, stridx(&runtimepath, ',')) \ . '/undo' endif @@ -36,10 +36,10 @@ if !isdirectory(expand(s:undodir)) " Failing that, use an OS-dependent command " (Fortunately, Unix and Windows are the only OS types in the world) elseif has('unix') - silent! execute '!mkdir -m 0700 -p ' + silent! execute '!mkdir -m 0700 -p ' \ . shellescape(expand(s:undodir)) elseif has('win32') || has('win64') - silent! execute '!mkdir ' + silent! execute '!mkdir ' \ . shellescape(expand(s:undodir)) endif diff --git a/vim/plugin/mail_mutt.vim b/vim/plugin/mail_mutt.vim index 5170fb52..63cae2f6 100644 --- a/vim/plugin/mail_mutt.vim +++ b/vim/plugin/mail_mutt.vim @@ -37,7 +37,7 @@ endfunction " Create a command to wrap around that function command -nargs=0 -range=% - \ MailMutt + \ MailMutt \ call <SID>MailMutt(<line1>, <line2>) " Mapping to mail current line in normal mode |