Mercurial > vim
annotate runtime/ftplugin/gitrebase.vim @ 22977:515d1651c6c6 v8.2.2035
patch 8.2.2035: MS-Windows: some tests may fail
Commit: https://github.com/vim/vim/commit/f637bceb6135139dc1891a15de8fa134c2ca2d97
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 23 18:14:56 2020 +0100
patch 8.2.2035: MS-Windows: some tests may fail
Problem: MS-Windows: some tests may fail.
Solution: Avoid test failures. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/7346)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 23 Nov 2020 18:30:04 +0100 |
parents | 5c40013d45ee |
children | 3e661b0cf500 |
rev | line source |
---|---|
1624 | 1 " Vim filetype plugin |
2 " Language: git rebase --interactive | |
2034 | 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
18818 | 4 " Last Change: 2019 Dec 05 |
1624 | 5 |
6 " Only do this when not done yet for this buffer | |
7 if (exists("b:did_ftplugin")) | |
2202 | 8 finish |
1624 | 9 endif |
10 | |
11 runtime! ftplugin/git.vim | |
12 let b:did_ftplugin = 1 | |
13 | |
14 setlocal comments=:# commentstring=#\ %s formatoptions-=t | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
15 setlocal nomodeline |
1624 | 16 if !exists("b:undo_ftplugin") |
2202 | 17 let b:undo_ftplugin = "" |
1624 | 18 endif |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
19 let b:undo_ftplugin = b:undo_ftplugin."|setl com< cms< fo< ml<" |
1624 | 20 |
18818 | 21 function! s:choose(word) abort |
2202 | 22 s/^\(\w\+\>\)\=\(\s*\)\ze\x\{4,40\}\>/\=(strlen(submatch(1)) == 1 ? a:word[0] : a:word) . substitute(submatch(2),'^$',' ','')/e |
1624 | 23 endfunction |
24 | |
18818 | 25 function! s:cycle(count) abort |
26 let words = ['pick', 'edit', 'fixup', 'squash', 'reword', 'drop'] | |
27 let index = index(map(copy(words), 'v:val[0]'), getline('.')[0]) | |
28 let index = ((index < 0 ? 0 : index) + 10000 * len(words) + a:count) % len(words) | |
29 call s:choose(words[index]) | |
1624 | 30 endfunction |
31 | |
18818 | 32 command! -buffer -bar -range Pick :<line1>,<line2>call s:choose('pick') |
33 command! -buffer -bar -range Squash :<line1>,<line2>call s:choose('squash') | |
34 command! -buffer -bar -range Edit :<line1>,<line2>call s:choose('edit') | |
35 command! -buffer -bar -range Reword :<line1>,<line2>call s:choose('reword') | |
36 command! -buffer -bar -range Fixup :<line1>,<line2>call s:choose('fixup') | |
37 command! -buffer -bar -range Drop :<line1>,<line2>call s:choose('drop') | |
38 command! -buffer -count=1 -bar -bang Cycle call s:cycle(<bang>0 ? -<count> : <count>) | |
1624 | 39 |
40 if exists("g:no_plugin_maps") || exists("g:no_gitrebase_maps") | |
2202 | 41 finish |
1624 | 42 endif |
43 | |
44 nnoremap <buffer> <expr> K col('.') < 7 && expand('<Lt>cword>') =~ '\X' && getline('.') =~ '^\w\+\s\+\x\+\>' ? 'wK' : 'K' | |
18818 | 45 nnoremap <buffer> <silent> <C-A> :<C-U><C-R>=v:count1<CR>Cycle<CR> |
46 nnoremap <buffer> <silent> <C-X> :<C-U><C-R>=v:count1<CR>Cycle!<CR> | |
1624 | 47 |
18818 | 48 let b:undo_ftplugin = b:undo_ftplugin . "|exe 'nunmap <buffer> K'|exe 'nunmap <buffer> <C-A>'|exe 'nunmap <buffer> <C-X>'" |