From 9b7ad65ea99c656beef7f1168e9f21c5895a4da3 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 8 Nov 2013 13:56:38 -0600 Subject: [PATCH] Remove double-dash from perforce call Closes #85. --- autoload/sy/repo.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/sy/repo.vim b/autoload/sy/repo.vim index 227e246..f85a301 100644 --- a/autoload/sy/repo.vim +++ b/autoload/sy/repo.vim @@ -163,7 +163,7 @@ endfunction " Function: #get_diff_perforce {{{1 function! sy#repo#get_diff_perforce(path) abort let diffoptions = has_key(s:diffoptions, 'perforce') ? s:diffoptions.perforce : '' - let diff = system('env P4DIFF=diff p4 diff -dU0 '. diffoptions .' -- '. sy#util#escape(a:path)) + let diff = system('env P4DIFF=diff p4 diff -du0 '. diffoptions .' '. sy#util#escape(a:path)) return v:shell_error ? [0, ''] : [1, diff] endfunction