2014-07-10 21:05:51 -07:00
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: git commit file
|
|
|
|
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
|
2023-12-28 16:28:54 -07:00
|
|
|
" Last Change: 2023 Dec 28
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Only do this when not done yet for this buffer
|
|
|
|
if (exists("b:did_ftplugin"))
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2017-04-28 12:06:44 -07:00
|
|
|
setlocal nomodeline tabstop=8 formatoptions+=tl textwidth=72
|
2020-11-19 18:33:27 -07:00
|
|
|
setlocal formatoptions-=c formatoptions-=r formatoptions-=o formatoptions-=q formatoptions+=n
|
2023-12-28 16:28:54 -07:00
|
|
|
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}]\\s\\+\\\|^\\s*[-*+]\\s\\+
|
2022-01-11 06:14:17 -07:00
|
|
|
setlocal include=^+++
|
|
|
|
setlocal includeexpr=substitute(v:fname,'^[bi]/','','')
|
2020-11-19 18:33:27 -07:00
|
|
|
|
2022-01-11 06:14:17 -07:00
|
|
|
let b:undo_ftplugin = 'setl modeline< tabstop< formatoptions< tw< com< cms< formatlistpat< inc< inex<'
|
2014-07-10 21:05:51 -07:00
|
|
|
|
2022-01-11 06:14:17 -07:00
|
|
|
let s:l = search('\C\m^[#;@!$%^&|:] -\{24,\} >8 -\{24,\}$', 'cnW', '', 100)
|
|
|
|
let &l:comments = ':' . (matchstr(getline(s:l ? s:l : '$'), '^[#;@!$%^&|:]\S\@!') . '#')[0]
|
|
|
|
let &l:commentstring = &l:comments[1] . ' %s'
|
|
|
|
unlet s:l
|
2014-07-10 21:05:51 -07:00
|
|
|
|
2022-01-11 06:14:17 -07:00
|
|
|
if exists("g:no_gitcommit_commands")
|
|
|
|
finish
|
2014-07-10 21:05:51 -07:00
|
|
|
endif
|
|
|
|
|
2022-01-11 06:14:17 -07:00
|
|
|
command! -bang -bar -buffer -complete=custom,s:diffcomplete -nargs=* DiffGitCached :call s:gitdiffcached(<bang>0, <f-args>)
|
2014-07-10 21:05:51 -07:00
|
|
|
|
2017-04-28 12:06:44 -07:00
|
|
|
let b:undo_ftplugin = b:undo_ftplugin . "|delc DiffGitCached"
|
|
|
|
|
2022-01-11 06:14:17 -07:00
|
|
|
function! s:diffcomplete(A, L, P) abort
|
2014-07-10 21:05:51 -07:00
|
|
|
let args = ""
|
|
|
|
if a:P <= match(a:L." -- "," -- ")+3
|
|
|
|
let args = args . "-p\n--stat\n--shortstat\n--summary\n--patch-with-stat\n--no-renames\n-B\n-M\n-C\n"
|
|
|
|
end
|
2022-01-11 06:14:17 -07:00
|
|
|
if a:A !~ '^-' && !empty(getftype('.git'))
|
|
|
|
let args = args."\n".system("git diff --cached --name-only")
|
2014-07-10 21:05:51 -07:00
|
|
|
endif
|
|
|
|
return args
|
|
|
|
endfunction
|
|
|
|
|
2023-12-28 16:28:54 -07:00
|
|
|
function! s:setupdiff() abort
|
|
|
|
command! -bang -bar -buffer -complete=custom,s:diffcomplete -nargs=* DiffGitCached :call s:gitdiffcached(<bang>0, <f-args>)
|
|
|
|
setlocal buftype=nowrite nobuflisted noswapfile nomodifiable filetype=git
|
|
|
|
endfunction
|
|
|
|
|
2022-01-11 06:14:17 -07:00
|
|
|
function! s:gitdiffcached(bang, ...) abort
|
2014-07-10 21:05:51 -07:00
|
|
|
let name = tempname()
|
|
|
|
if a:0
|
2022-01-11 06:14:17 -07:00
|
|
|
let extra = join(map(copy(a:000), 'shellescape(v:val)'))
|
2014-07-10 21:05:51 -07:00
|
|
|
else
|
|
|
|
let extra = "-p --stat=".&columns
|
|
|
|
endif
|
2022-01-11 06:14:17 -07:00
|
|
|
call system("git diff --cached --no-color --no-ext-diff ".extra." > ".shellescape(name))
|
2023-12-28 16:28:54 -07:00
|
|
|
exe 'pedit +call\ s:setupdiff()' fnameescape(name)
|
|
|
|
silent! wincmd P
|
2014-07-10 21:05:51 -07:00
|
|
|
endfunction
|