mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
runtime(vim): Update base-syntax, match quote separated numbers
closes: #17250 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
ba2ed6ac04
commit
e957cba081
@@ -2,6 +2,22 @@ vim9script
|
||||
# Vim9-script expressions
|
||||
|
||||
|
||||
# Number
|
||||
|
||||
# ' separated
|
||||
|
||||
echo 1'000'000
|
||||
echo 1'000'000.00
|
||||
echo -1'000'000
|
||||
echo -1'000'000.00
|
||||
|
||||
echo 0b1000'0000
|
||||
echo 0o1000'0000
|
||||
echo 0x1000'0000
|
||||
echo -0b1000'0000
|
||||
echo -0o1000'0000
|
||||
echo -0x1000'0000
|
||||
|
||||
# Dictionary
|
||||
|
||||
echo {}
|
||||
|
Reference in New Issue
Block a user