vim-signify/autoload/sy/repo.vim

565 lines
17 KiB
VimL
Raw Normal View History

2013-09-30 04:19:31 -04:00
" vim: et sw=2 sts=2
scriptencoding utf-8
2013-07-17 06:30:58 -04:00
" Function: #detect {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#detect() abort
for vcs in s:vcs_list
let b:sy.detecting += 1
call sy#repo#get_diff_start(vcs, function('sy#repo#job_exit_show_signs'))
2013-07-17 04:14:43 -04:00
endfor
2017-01-17 08:22:19 -05:00
endfunction
2017-02-20 08:52:24 -05:00
" Function: s:callback_nvim_stdout{{{1
function! s:callback_nvim_stdout(_job_id, data, _event) dict abort
2017-01-17 08:22:19 -05:00
if empty(self.stdoutbuf) || empty(self.stdoutbuf[-1])
let self.stdoutbuf += a:data
else
let self.stdoutbuf = self.stdoutbuf[:-2]
\ + [self.stdoutbuf[-1] . get(a:data, 0, '')]
2017-01-17 08:22:19 -05:00
\ + a:data[1:]
endif
endfunction
2017-02-20 08:52:24 -05:00
" Function: s:callback_nvim_exit {{{1
function! s:callback_nvim_exit(_job_id, exitval, _event) dict abort
call self.func(self.bufnr, self.vcs, a:exitval, self.stdoutbuf)
2017-02-20 08:52:24 -05:00
endfunction
" Function: s:callback_vim_stdout {{{1
function! s:callback_vim_stdout(_job_id, data) dict abort
2017-01-17 17:12:00 -05:00
let self.stdoutbuf += [a:data]
endfunction
2017-02-20 08:52:24 -05:00
" Function: s:callback_vim_close {{{1
function! s:callback_vim_close(channel) dict abort
let job = ch_getjob(a:channel)
while 1
if job_status(job) == 'dead'
let exitval = job_info(job).exitval
break
endif
sleep 10m
endwhile
call self.func(self.bufnr, self.vcs, exitval, self.stdoutbuf)
endfunction
" Function: #job_exit_show_signs {{{1
function! sy#repo#job_exit_show_signs(bufnr, vcs, exitval, diff) abort
call sy#verbose('sy#repo#job_exit_show_signs()', a:vcs)
let sy = getbufvar(a:bufnr, 'sy')
if empty(sy)
call sy#verbose(printf('No b:sy found for %s', bufname(a:bufnr)), a:vcs)
return
elseif !empty(sy.updated_by) && sy.updated_by != a:vcs
call sy#verbose(printf('Signs already got updated by %s.', sy.updated_by), a:vcs)
return
elseif empty(sy.vcs) && sy.active
let sy.detecting -= 1
endif
2017-04-18 11:13:17 -04:00
call sy#repo#get_diff_{a:vcs}(sy, a:exitval, a:diff)
call setbufvar(a:bufnr, 'sy_job_id_'.a:vcs, 0)
2017-01-17 13:41:55 -05:00
endfunction
" Function: #job_exit_preview_hunk {{{1
function! sy#repo#job_exit_preview_hunk(_bufnr, _vcs, _exitval, diff) abort
let in_hunk = 0
let hunk = []
for line in a:diff
if in_hunk
if line[:2] == '@@ '
silent! wincmd P
if !&previewwindow
noautocmd botright new
endif
call setline(1, hunk)
silent! %foldopen!
setlocal previewwindow filetype=diff buftype=nofile bufhidden=delete
noautocmd wincmd p
return
endif
call add(hunk, line)
elseif line[:2] == '@@ ' && s:is_line_in_hunk(line)
let in_hunk = 1
endif
endfor
endfunction
function! s:is_line_in_hunk(hunkline)
let curline = line('.')
let [old_line, new_line, old_count, new_count] = sy#sign#parse_hunk(a:hunkline)
if curline >= new_line && curline <= (new_line + new_count)
return 1
endif
return 0
endfunction
2017-01-17 13:41:55 -05:00
" Function: sy#get_diff_start {{{1
function! sy#repo#get_diff_start(vcs, func) abort
call sy#verbose('sy#repoget_diff_start()', a:vcs)
2017-01-17 17:12:00 -05:00
2017-01-30 09:31:14 -05:00
let job_id = get(b:, 'sy_job_id_'.a:vcs)
2017-01-18 11:15:15 -05:00
" Neovim
2017-01-17 13:41:55 -05:00
if has('nvim')
2017-01-30 09:25:41 -05:00
if job_id
silent! call jobstop(job_id)
2017-01-17 13:41:55 -05:00
endif
2017-01-18 11:15:15 -05:00
2017-04-18 11:13:17 -04:00
let [cmd, options] = s:initialize_job(a:vcs)
let options.func = a:func
let [cwd, chdir] = sy#util#chdir()
2017-01-18 11:15:15 -05:00
2018-12-27 09:37:51 -05:00
call sy#verbose(['CMD: '. string(cmd), 'CMD DIR: '. b:sy.info.dir, 'ORIG DIR: '. cwd], a:vcs)
try
execute chdir fnameescape(b:sy.info.dir)
catch
echohl ErrorMsg
2018-12-27 09:19:49 -05:00
echomsg 'signify: Changing directory failed: '. b:sy.info.dir
echohl NONE
return
endtry
2017-02-20 09:14:24 -05:00
let b:sy_job_id_{a:vcs} = jobstart(cmd, extend(options, {
\ 'on_stdout': function('s:callback_nvim_stdout'),
\ 'on_exit': function('s:callback_nvim_exit'),
\ }))
execute chdir fnameescape(cwd)
2017-01-18 11:15:15 -05:00
" Newer Vim
elseif has('patch-7.4.1967')
if type(job_id) != type(0)
2017-01-30 09:25:41 -05:00
silent! call job_stop(job_id)
2017-01-17 17:12:00 -05:00
endif
2017-01-18 11:15:15 -05:00
2017-04-18 11:13:17 -04:00
let [cmd, options] = s:initialize_job(a:vcs)
let options.func = a:func
2017-01-18 11:15:15 -05:00
let [cwd, chdir] = sy#util#chdir()
2018-12-27 09:37:51 -05:00
call sy#verbose(['CMD: '. string(cmd), 'CMD DIR: '. b:sy.info.dir, 'ORIG DIR: '. cwd], a:vcs)
2017-01-17 17:12:00 -05:00
try
2018-04-13 08:49:25 -04:00
execute chdir fnameescape(b:sy.info.dir)
catch
echohl ErrorMsg
echomsg 'signify: Changing directory failed: '. b:sy.info.dir
echohl NONE
return
2017-01-17 17:12:00 -05:00
endtry
let opts = {
\ 'in_io': 'null',
\ 'out_cb': function('s:callback_vim_stdout', options),
\ 'close_cb': function('s:callback_vim_close', options),
\ }
let b:sy_job_id_{a:vcs} = job_start(cmd, opts)
execute chdir fnameescape(cwd)
2017-01-18 11:15:15 -05:00
" Older Vim
2017-01-17 13:41:55 -05:00
else
2017-01-18 10:28:35 -05:00
let diff = split(s:run(a:vcs), '\n')
2017-04-18 11:13:17 -04:00
call sy#repo#get_diff_{a:vcs}(b:sy, v:shell_error, diff)
2017-01-17 13:41:55 -05:00
endif
endfunction
" Function: s:get_diff_end {{{1
2017-04-18 11:13:17 -04:00
function! s:get_diff_end(sy, found_diff, vcs, diff) abort
2017-01-18 11:27:44 -05:00
call sy#verbose('get_diff_end()', a:vcs)
if a:found_diff
if index(a:sy.vcs, a:vcs) == -1
let a:sy.vcs += [a:vcs]
endif
2017-04-18 11:13:17 -04:00
call sy#set_signs(a:sy, a:vcs, a:diff)
else
call sy#verbose('No valid diff found. Disabling this VCS.', a:vcs)
endif
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_git {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_git(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_git()', 'git')
let [found_diff, diff] = a:exitval ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'git', diff)
2013-07-17 04:14:43 -04:00
endfunction
" Function: #get_diff_yadm {{{1
function! sy#repo#get_diff_yadm(sy, exitval, diff) abort
call sy#verbose('get_diff_yadm()', 'yadm')
let [found_diff, diff] = a:exitval ? [0, []] : [1, a:diff]
call s:get_diff_end(a:sy, found_diff, 'yadm', diff)
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_hg {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_hg(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_hg()', 'hg')
let [found_diff, diff] = a:exitval ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'hg', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_svn {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_svn(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_svn()', 'svn')
let [found_diff, diff] = a:exitval ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'svn', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_bzr {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_bzr(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_bzr()', 'bzr')
let [found_diff, diff] = (a:exitval =~ '[012]') ? [1, a:diff] : [0, []]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'bzr', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_darcs {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_darcs(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_darcs()', 'darcs')
let [found_diff, diff] = a:exitval ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'darcs', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_fossil {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_fossil(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_fossil()', 'fossil')
let [found_diff, diff] = a:exitval ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'fossil', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_cvs {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_cvs(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_cvs()', 'cvs')
let [found_diff, diff] = [0, []]
2017-01-22 20:58:40 -05:00
if a:exitval == 1
for diffline in a:diff
2018-04-15 11:49:03 -04:00
if diffline =~ '^+++'
2017-01-22 20:58:40 -05:00
let [found_diff, diff] = [1, a:diff]
break
endif
endfor
elseif a:exitval == 0 && len(a:diff) == 0
let found_diff = 1
2017-01-22 20:58:40 -05:00
endif
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'cvs', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_rcs {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_rcs(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_rcs()', 'rcs')
let [found_diff, diff] = a:exitval == 2 ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'rcs', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_accurev {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_accurev(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_accurev()', 'accurev')
let [found_diff, diff] = (a:exitval >= 2) ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'accurev', diff)
2013-07-17 04:14:43 -04:00
endfunction
2013-07-29 15:15:07 -04:00
" Function: #get_diff_perforce {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_perforce(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_perforce()', 'perforce')
let [found_diff, diff] = a:exitval ? [0, []] : [1, a:diff]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'perforce', diff)
2013-07-29 15:15:07 -04:00
endfunction
" Function: #get_diff_tfs {{{1
2017-04-18 11:13:17 -04:00
function! sy#repo#get_diff_tfs(sy, exitval, diff) abort
2017-01-17 17:57:29 -05:00
call sy#verbose('get_diff_tfs()', 'tfs')
let [found_diff, diff] = a:exitval ? [0, []] : [1, s:strip_context(a:diff)]
2017-04-18 11:13:17 -04:00
call s:get_diff_end(a:sy, found_diff, 'tfs', diff)
endfunction
" Function: #get_stats {{{1
function! sy#repo#get_stats() abort
2018-04-15 16:00:17 -04:00
return exists('b:sy') ? b:sy.stats : [-1, -1, -1]
endfunction
2015-05-26 04:59:29 -04:00
" Function: #debug_detection {{{1
function! sy#repo#debug_detection()
if !exists('b:sy')
echomsg 'signify: I cannot detect any changes!'
return
endif
2015-05-24 04:40:18 -04:00
2015-05-26 04:59:29 -04:00
for vcs in s:vcs_list
2018-04-13 09:01:47 -04:00
let cmd = s:expand_cmd(vcs, g:signify_vcs_cmds)
2015-05-26 04:59:29 -04:00
echohl Statement
echo cmd
echo repeat('=', len(cmd))
echohl NONE
2017-01-17 20:42:00 -05:00
let diff = s:run(vcs)
2015-05-26 04:59:29 -04:00
if v:shell_error
echohl ErrorMsg
echo diff
echohl NONE
else
echo empty(diff) ? "<none>" : diff
endif
echo "\n"
endfor
endfunction
" Function: #diffmode {{{1
function! sy#repo#diffmode(do_tab) abort
2018-04-15 16:00:17 -04:00
execute sy#util#return_if_no_changes()
let vcs = b:sy.updated_by
if !has_key(g:signify_vcs_cmds_diffmode, vcs)
echomsg 'SignifyDiff has no support for: '. vcs
echomsg 'Open an issue for it at: https://github.com/mhinz/vim-signify/issues'
return
endif
2018-04-13 09:01:47 -04:00
let cmd = s:expand_cmd(vcs, g:signify_vcs_cmds_diffmode)
2018-04-13 06:59:58 -04:00
call sy#verbose('SignifyDiff: '. cmd, vcs)
let ft = &filetype
let fenc = &fenc
if a:do_tab
tabedit %
endif
diffthis
let [cwd, chdir] = sy#util#chdir()
try
2018-04-13 08:49:25 -04:00
execute chdir fnameescape(b:sy.info.dir)
leftabove vnew
if has('iconv')
silent put =iconv(system(cmd), fenc, &enc)
else
silent put =system(cmd)
endif
finally
execute chdir fnameescape(cwd)
endtry
silent 1delete
set buftype=nofile bufhidden=wipe nomodified
let &filetype = ft
diffthis
wincmd p
normal! ]czt
endfunction
" Function: #preview_hunk {{{1
function! sy#repo#preview_hunk() abort
if exists('b:sy') && has_key(b:sy, 'updated_by')
call sy#repo#get_diff_start(b:sy.updated_by, function('sy#repo#job_exit_preview_hunk'))
endif
endfunction
2017-01-18 07:40:34 -05:00
" Function: s:initialize_job {{{1
2017-04-18 11:13:17 -04:00
function! s:initialize_job(vcs) abort
2018-04-13 09:01:47 -04:00
let vcs_cmd = s:expand_cmd(a:vcs, g:signify_vcs_cmds)
if has('win32')
if has('nvim')
let cmd = &shell =~ '\v%(cmd|powershell)' ? vcs_cmd : ['sh', '-c', vcs_cmd]
else
if &shell =~ 'cmd'
let cmd = join([&shell, &shellcmdflag, '(', vcs_cmd, ')'])
elseif empty(&shellxquote)
let cmd = join([&shell, &shellcmdflag, &shellquote, vcs_cmd, &shellquote])
else
let cmd = join([&shell, &shellcmdflag, &shellxquote, vcs_cmd, &shellxquote])
endif
endif
else
let cmd = ['sh', '-c', vcs_cmd]
endif
2017-01-18 07:40:34 -05:00
let options = {
\ 'stdoutbuf': [],
\ 'vcs': a:vcs,
\ 'bufnr': bufnr('%'),
2017-01-18 07:40:34 -05:00
\ }
return [cmd, options]
endfunction
2017-01-17 20:42:00 -05:00
" Function: s:get_vcs_path {{{1
function! s:get_vcs_path(vcs) abort
return (a:vcs =~# '\v(git|cvs|accurev|tfs|yadm)') ? b:sy.info.file : b:sy.info.path
2017-01-17 20:42:00 -05:00
endfunction
2015-05-26 04:59:29 -04:00
" Function: s:expand_cmd {{{1
2018-04-13 09:01:47 -04:00
function! s:expand_cmd(vcs, vcs_cmds) abort
let cmd = a:vcs_cmds[a:vcs]
let cmd = s:replace(cmd, '%f', s:get_vcs_path(a:vcs))
let cmd = s:replace(cmd, '%d', s:difftool)
let cmd = s:replace(cmd, '%n', s:devnull)
return cmd
endfunction
2015-05-26 04:59:29 -04:00
" Function: s:run {{{1
2017-01-17 20:42:00 -05:00
function! s:run(vcs)
2017-01-18 11:15:15 -05:00
let [cwd, chdir] = sy#util#chdir()
try
2018-04-13 08:49:25 -04:00
execute chdir fnameescape(b:sy.info.dir)
2018-04-13 09:01:47 -04:00
let ret = system(s:expand_cmd(a:vcs, g:signify_vcs_cmds))
catch
" This exception message can be seen via :SignifyDebugUnknown.
" E.g. unquoted VCS programs in vcd_cmds can lead to E484.
let ret = v:exception .' at '. v:throwpoint
finally
2017-01-18 11:15:15 -05:00
execute chdir fnameescape(cwd)
return ret
endtry
endfunction
2015-05-19 08:57:40 -04:00
" Function: s:replace {{{1
function! s:replace(cmd, pat, sub)
let parts = split(a:cmd, a:pat, 1)
return join(parts, a:sub)
endfunction
" Function: s:strip_context {{{1
function! s:strip_context(context)
let diff = []
let hunk = []
let state = 0
2017-01-31 05:34:43 -05:00
let lines = a:context
let linenr = 0
while linenr < len(lines)
let line = lines[linenr]
if state == 0
if line =~ "^@@ "
2019-08-01 11:23:23 -04:00
let [old_line, new_line, old_count, new_count] = sy#sign#parse_hunk(line)
let hunk = []
let state = 1
else
call add(diff,line)
endif
let linenr += 1
elseif index([1,2,3],state) >= 0 && index(['\','/'],line[0]) >= 0
let linenr += 1
call add(hunk,line)
elseif state == 1
if line[0] == ' '
let old_line += 1
let new_line += 1
let old_count -= 1
let new_count -= 1
let linenr += 1
else
let old_count_part = 0
let new_count_part = 0
let state = 2
endif
elseif state == 2
if line[0] == '-'
call add(hunk,line)
let old_count_part += 1
let linenr += 1
else
let state = 3
endif
elseif state == 3
if line[0] == '+'
call add(hunk,line)
let new_count_part += 1
let linenr += 1
else
call add(diff, printf("@@ -%d%s +%d%s @@",(old_count_part == 0 && old_line > 0) ? old_line -1 : old_line, old_count_part == 1 ? "" : printf(",%d", old_count_part), (new_count_part == 0 && new_line > 0) ? new_line - 1 : new_line, new_count_part == 1 ? "" : printf(",%d", new_count_part)))
let diff += hunk
let hunk = []
let old_count -= old_count_part
let new_count -= new_count_part
let old_line += old_count_part
let new_line += new_count_part
let state = 1
endif
endif
if state > 0 && new_count <= 0 && old_count <= 0
if len(hunk) > 0
call add(diff, printf("@@ -%d%s +%d%s @@",(old_count_part == 0 && old_line > 0) ? old_line -1 : old_line, old_count_part == 1 ? "" : printf(",%d", old_count_part), (new_count_part == 0 && new_line > 0) ? new_line - 1 : new_line, new_count_part == 1 ? "" : printf(",%d", new_count_part)))
let diff = diff + hunk
let hunk = []
endif
let state = 0
endif
endwhile
if len(hunk) > 0
call add(diff, printf("@@ -%d%s +%d%s @@",(old_count_part == 0 && old_line > 0) ? old_line -1 : old_line, old_count_part == 1 ? "" : printf(",%d", old_count_part), (new_count_part == 0 && new_line > 0) ? new_line - 1 : new_line, new_count_part == 1 ? "" : printf(",%d", new_count_part)))
let diff = diff + hunk
let hunk = []
endif
2017-01-31 05:34:43 -05:00
return diff
endfunction
2015-05-20 08:00:39 -04:00
" Variables {{{1
2015-05-20 07:11:26 -04:00
let s:difftool = get(g:, 'signify_difftool', 'diff')
if executable(s:difftool)
let s:vcs_dict = {
\ 'git': 'git',
\ 'yadm': 'yadm',
2015-05-20 07:11:26 -04:00
\ 'hg': 'hg',
\ 'svn': 'svn',
\ 'darcs': 'darcs',
\ 'bzr': 'bzr',
\ 'fossil': 'fossil',
\ 'cvs': 'cvs',
\ 'rcs': 'rcsdiff',
\ 'accurev': 'accurev',
\ 'perforce': 'p4',
\ 'tfs': 'tf'
2015-05-20 07:11:26 -04:00
\ }
else
2019-03-28 03:39:42 -04:00
call sy#verbose('No "diff" executable found. Disable support for svn, darcs, bzr.')
2015-05-20 07:11:26 -04:00
let s:vcs_dict = {
\ 'git': 'git',
\ 'yadm': 'yadm',
2015-05-20 07:11:26 -04:00
\ 'hg': 'hg',
2019-03-28 03:39:42 -04:00
\ 'fossil': 'fossil',
2015-05-20 07:11:26 -04:00
\ 'cvs': 'cvs',
\ 'rcs': 'rcsdiff',
\ 'accurev': 'accurev',
\ 'perforce': 'p4',
\ 'tfs': 'tf'
2015-05-20 07:11:26 -04:00
\ }
endif
let s:vcs_list = get(g:, 'signify_vcs_list', [])
if empty(s:vcs_list)
let s:vcs_list = keys(filter(s:vcs_dict, 'executable(v:val)'))
endif
let s:default_vcs_cmds = {
2015-05-20 07:11:26 -04:00
\ 'git': 'git diff --no-color --no-ext-diff -U0 -- %f',
\ 'yadm': 'yadm diff --no-color --no-ext-diff -U0 -- %f',
\ 'hg': 'hg diff --color=never --config aliases.diff= --nodates -U0 -- %f',
2015-05-20 07:11:26 -04:00
\ 'svn': 'svn diff --diff-cmd %d -x -U0 -- %f',
\ 'bzr': 'bzr diff --using %d --diff-options=-U0 -- %f',
\ 'darcs': 'darcs diff --no-pause-for-gui --no-unified --diff-opts=-U0 -- %f',
\ 'fossil': 'fossil diff --unified -c 0 -- %f',
2015-05-20 07:11:26 -04:00
\ 'cvs': 'cvs diff -U0 -- %f',
2015-05-20 08:22:52 -04:00
\ 'rcs': 'rcsdiff -U0 %f 2>%n',
2015-05-20 07:11:26 -04:00
\ 'accurev': 'accurev diff %f -- -U0',
\ 'perforce': 'p4 info '. sy#util#shell_redirect('%n') . (has('win32') ? ' &&' : ' && env P4DIFF= P4COLORS=') .' p4 diff -du0 %f',
\ 'tfs': 'tf diff -version:W -noprompt -format:Unified %f'
2015-05-20 07:11:26 -04:00
\ }
let s:default_vcs_cmds_diffmode = {
\ 'git': 'git show HEAD:./%f',
\ 'yadm': 'yadm show HEAD:./%f',
\ 'hg': 'hg cat %f',
\ 'svn': 'svn cat %f',
\ 'bzr': 'bzr cat %f',
\ 'darcs': 'darcs show contents -- %f',
2019-03-28 03:39:42 -04:00
\ 'fossil': 'fossil cat %f',
\ 'cvs': 'cvs up -p -- %f 2>%n',
\ 'perforce': 'p4 print %f',
\ }
2015-05-20 07:11:26 -04:00
if exists('g:signify_vcs_cmds')
call extend(g:signify_vcs_cmds, s:default_vcs_cmds, 'keep')
else
let g:signify_vcs_cmds = s:default_vcs_cmds
endif
if exists('g:signify_vcs_cmds_diffmode')
call extend(g:signify_vcs_cmds_diffmode, s:default_vcs_cmds_diffmode, 'keep')
else
let g:signify_vcs_cmds_diffmode = s:default_vcs_cmds_diffmode
2015-05-20 07:11:26 -04:00
endif
2015-05-20 08:00:39 -04:00
let s:difftool = sy#util#escape(s:difftool)
2015-05-20 07:11:26 -04:00
let s:devnull = has('win32') || has ('win64') ? 'NUL' : '/dev/null'