0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

runtime(awk): Highlight more awk comments in syntax script

closes: #15944

Signed-off-by: John M Devin <john.m.devin@gmail.com>
Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
John M Devin
2024-10-28 21:46:09 +01:00
committed by Christian Brabandt
parent d69ffbe4bc
commit 1e2007e643
3 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
{ # Comment 1
for (i = 0; # Comment 2
i < 1; # Comment 3
i++) # Comment 4
{ # Comment 5
print # Comment 6
} # Comment 7
} # Comment 8