mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
Match group and pattern arguments to :match commands. closes: #15096 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
14 lines
166 B
VimL
14 lines
166 B
VimL
" Vim :match, :2match and :3match commands
|
|
|
|
match FooGroup /Foo/
|
|
match
|
|
match none
|
|
|
|
2match FooGroup /Foo/
|
|
2match
|
|
2match none
|
|
|
|
3match FooGroup /Foo/
|
|
3match
|
|
3match none
|