mirror of
https://github.com/vim/vim.git
synced 2026-04-27 14:05:58 +02:00
runtime(vim): Update base-syntax, match unamed register alias
The unamed register may be referenced as both @" and @@. Remove the unused vimPlainRegister syntax group. fixes: #17603. closes: #17605 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
42d2c5e803
commit
037c32e428
@@ -258,12 +258,30 @@ echo (42, 87) + foo
|
||||
|
||||
" Register
|
||||
|
||||
echo @"
|
||||
echo @" @@
|
||||
echo @0 @1 @2 @3 @4 @5 @6 @7 @8 @9
|
||||
echo @-
|
||||
echo @a @b @c @d @e @f @g @h @i @j @k @l @m @n @o @p @q @r @s @t @u @v @w @x @y @z
|
||||
echo @A @B @C @D @E @F @G @H @I @J @K @L @M @N @O @P @Q @R @S @T @U @V @W @X @Y @Z
|
||||
echo @: @. @% @# @= @* @+ @~ @_ @/
|
||||
echo @- @: @. @% @# @= @* @+ @~ @_ @/
|
||||
|
||||
" read-only @:, @., @%, @~
|
||||
let @" = "foo"
|
||||
let @0 = "foo"
|
||||
let @1 = "foo"
|
||||
let @9 = "foo"
|
||||
let @a = "foo"
|
||||
let @k = "foo"
|
||||
let @z = "foo"
|
||||
let @A = "foo"
|
||||
let @K = "foo"
|
||||
let @Z = "foo"
|
||||
let @- = "foo"
|
||||
let @# = "foo"
|
||||
let @= = "foo"
|
||||
let @* = "foo"
|
||||
let @+ = "foo"
|
||||
let @_ = "foo"
|
||||
let @/ = "foo"
|
||||
|
||||
" Operators
|
||||
|
||||
|
||||
Reference in New Issue
Block a user