From 5812878c6c35ea37d2eae70c7276e37326ff058f Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Mon, 20 May 2013 06:04:12 +0200 Subject: Remove line continuation from xolox#misc#os script --- autoload/xolox/misc/os.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'autoload') 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 -- cgit v1.2.3