mirror of
https://github.com/vim/vim
synced 2025-05-02 22:37:47 +02:00
Fixes issue #7876 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
25 lines
558 B
VimL
25 lines
558 B
VimL
" Vim :abbreviate commands
|
|
|
|
abbrev <buffer> foo foobar
|
|
cabbrev <buffer> cfoo cfoobar
|
|
iabbrev <buffer> ifoo cfoobar
|
|
|
|
abbrev <expr> <buffer> foo foobar
|
|
cabbrev <expr> <buffer> cfoo cfoobar
|
|
iabbrev <expr> <buffer> ifoo cfoobar
|
|
|
|
noreabbrev <buffer> foo foobar
|
|
cnoreabbrev <buffer> cfoo cfoobar
|
|
inoreabbrev <buffer> ifoo cfoobar
|
|
|
|
abbrev <expr> <buffer> foo foobar
|
|
cabbrev <expr> <buffer> cfoo cfoobar
|
|
iabbrev <expr> <buffer> ifoo cfoobar
|
|
|
|
unabbrev <buffer> foo
|
|
cunabbrev <buffer> cfoo
|
|
iunabbrev <buffer> ifoo
|
|
|
|
abclear <buffer>
|
|
cabclear <buffer>
|
|
iabclear <buffer>
|