0
0
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:
Doug Kearns
2025-05-04 21:01:18 +02:00
committed by Christian Brabandt
parent ba2ed6ac04
commit e957cba081
14 changed files with 226 additions and 190 deletions

View File

@@ -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 {}