comparison plugin/lawrencium.vim @ 135:48f4124af78d

Fix indent
author hokorobi <hokorobi.hokorobi@gmail.com>
date Sun, 21 Feb 2016 19:17:23 +0900
parents c04855b6f318
children 90f8d4bf4fa7
comparison
equal deleted inserted replaced
132:c04855b6f318 135:48f4124af78d
354 let l:prev_shellslash = &shellslash 354 let l:prev_shellslash = &shellslash
355 setlocal noshellslash 355 setlocal noshellslash
356 let l:hg_command = g:lawrencium_hg_executable . ' --repository ' . shellescape(s:stripslash(self.root_dir)) 356 let l:hg_command = g:lawrencium_hg_executable . ' --repository ' . shellescape(s:stripslash(self.root_dir))
357 let l:hg_command = l:hg_command . ' ' . a:command 357 let l:hg_command = l:hg_command . ' ' . a:command
358 for l:arg in l:arg_list 358 for l:arg in l:arg_list
359 let l:hg_command = l:hg_command . ' ' . shellescape(l:arg) 359 let l:hg_command = l:hg_command . ' ' . shellescape(l:arg)
360 endfor 360 endfor
361 if l:prev_shellslash 361 if l:prev_shellslash
362 setlocal shellslash 362 setlocal shellslash
363 endif 363 endif
364 return l:hg_command 364 return l:hg_command