Mercurial > vim
annotate runtime/ftplugin/gitrebase.vim @ 33767:4913b4f5a133 v9.0.2104
patch 9.0.2104: wast filetype should be replaced by wat filetype
Commit: https://github.com/vim/vim/commit/bc8f79d36a456054ed29f46585830af6d71f57c8
Author: rhysd <lin90162@yahoo.co.jp>
Date: Tue Nov 14 16:46:07 2023 +0100
patch 9.0.2104: wast filetype should be replaced by wat filetype
Problem: wast filetype should be replaced by wat filetype
Solution: start using the official wat filetype name
runtime: rename `wast` filetype to `wat` (Wasm text format)
The problem is the name of the current filetype wast. When the plugin
was initially created, the file extension for Wasm text format was not
fixed and .wast was more popular.
However, recently .wat became the official file extension for
WebAssembly text (WAT) format and .wast is now a file extension for the
unofficial WAST format, which is a superset of .wat for the convenience
to describe the Wasm specification conformance tests.
https://webassembly.js.org/docs/contrib-wat-vs-wast.html
However for now, let's keep using the `wat` filetype even for the .wast
extension, so that we at least do not lose the filetype settings and
syntax highlighting. This can be adjusted later, if it turns out to have
a separate need for.
closes: #13533
Signed-off-by: rhysd <lin90162@yahoo.co.jp>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 14 Nov 2023 17:15:03 +0100 |
parents | 3e661b0cf500 |
children |
rev | line source |
---|---|
1624 | 1 " Vim filetype plugin |
2 " Language: git rebase --interactive | |
2034 | 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
27036 | 4 " Last Change: 2022 Jan 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 let b:did_ftplugin = 1 | |
12 | |
27036 | 13 let &l:comments = ':' . (matchstr(getline('$'), '^[#;@!$%^&|:]\S\@!') . '#')[0] |
14 let &l:commentstring = &l:comments[1] . ' %s' | |
15 setlocal formatoptions-=t | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
16 setlocal nomodeline |
27036 | 17 let b:undo_ftplugin = "setl com< cms< fo< ml<" |
1624 | 18 |
18818 | 19 function! s:choose(word) abort |
2202 | 20 s/^\(\w\+\>\)\=\(\s*\)\ze\x\{4,40\}\>/\=(strlen(submatch(1)) == 1 ? a:word[0] : a:word) . substitute(submatch(2),'^$',' ','')/e |
1624 | 21 endfunction |
22 | |
18818 | 23 function! s:cycle(count) abort |
24 let words = ['pick', 'edit', 'fixup', 'squash', 'reword', 'drop'] | |
25 let index = index(map(copy(words), 'v:val[0]'), getline('.')[0]) | |
26 let index = ((index < 0 ? 0 : index) + 10000 * len(words) + a:count) % len(words) | |
27 call s:choose(words[index]) | |
1624 | 28 endfunction |
29 | |
18818 | 30 command! -buffer -bar -range Pick :<line1>,<line2>call s:choose('pick') |
31 command! -buffer -bar -range Squash :<line1>,<line2>call s:choose('squash') | |
32 command! -buffer -bar -range Edit :<line1>,<line2>call s:choose('edit') | |
33 command! -buffer -bar -range Reword :<line1>,<line2>call s:choose('reword') | |
34 command! -buffer -bar -range Fixup :<line1>,<line2>call s:choose('fixup') | |
35 command! -buffer -bar -range Drop :<line1>,<line2>call s:choose('drop') | |
36 command! -buffer -count=1 -bar -bang Cycle call s:cycle(<bang>0 ? -<count> : <count>) | |
1624 | 37 |
38 if exists("g:no_plugin_maps") || exists("g:no_gitrebase_maps") | |
2202 | 39 finish |
1624 | 40 endif |
41 | |
18818 | 42 nnoremap <buffer> <silent> <C-A> :<C-U><C-R>=v:count1<CR>Cycle<CR> |
43 nnoremap <buffer> <silent> <C-X> :<C-U><C-R>=v:count1<CR>Cycle!<CR> | |
1624 | 44 |
27036 | 45 let b:undo_ftplugin = b:undo_ftplugin . "|exe 'nunmap <buffer> <C-A>'|exe 'nunmap <buffer> <C-X>'" |