diff --git a/autoload/sy/repo.vim b/autoload/sy/repo.vim index b7f3866..b2c0796 100644 --- a/autoload/sy/repo.vim +++ b/autoload/sy/repo.vim @@ -76,7 +76,7 @@ endfunction " Function: #get_diff_accurev {{{1 function! sy#repo#get_diff_accurev() abort let diff = s:run(g:signify_vcs_cmds.accurev, b:sy_info.file, 1) - return (v:shell_error == 2) ? [0, ''] : [1, diff] + return (v:shell_error >= 2) ? [0, ''] : [1, diff] endfunction " Function: #get_diff_perforce {{{1