diff options
author | Peter Odding <peter@peterodding.com> | 2013-05-20 06:04:12 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2013-05-20 06:04:12 +0200 |
commit | 5812878c6c35ea37d2eae70c7276e37326ff058f (patch) | |
tree | 7ef27059d875229bc63fc5b953682ace132705a0 | |
parent | c4997a1f0060f06428b451637e934bfa36afd561 (diff) | |
download | vim-easytags-5812878c6c35ea37d2eae70c7276e37326ff058f.tar.gz |
Remove line continuation from xolox#misc#os script
-rw-r--r-- | autoload/xolox/misc/os.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/autoload/xolox/misc/os.vim b/autoload/xolox/misc/os.vim index 4dcf64d..157affe 100644 --- a/autoload/xolox/misc/os.vim +++ b/autoload/xolox/misc/os.vim @@ -63,9 +63,7 @@ function! xolox#misc#os#exec(options) " {{{1 if !async let tempout = tempname() let temperr = tempname() - let cmd = printf('(%s) 1>%s 2>%s', cmd, - \ xolox#misc#escape#shell(tempout), - \ xolox#misc#escape#shell(temperr)) + let cmd = printf('(%s) 1>%s 2>%s', cmd, xolox#misc#escape#shell(tempout), xolox#misc#escape#shell(temperr)) endif " If A) we're on Windows, B) the vim-shell plug-in is installed and C) the |