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>
diff --git a/runtime/syntax/testdir/dumps/awk_00.dump b/runtime/syntax/testdir/dumps/awk_00.dump
new file mode 100644
index 0000000..f2c0580
--- /dev/null
+++ b/runtime/syntax/testdir/dumps/awk_00.dump
@@ -0,0 +1,20 @@
+>{+0&#ffffff0| |#+0#0000e05&| |C|o|m@1|e|n|t| |1| +0#0000000&@61
+@4|f+0#af5f00255&|o|r| +0#0000000&|(|i| |=+0#e000e06&| +0#0000000&|0+0#e000002&|;+0#e000e06&| +0#0000000&|#+0#0000e05&| |C|o|m@1|e|n|t| |2| +0#0000000&@47
+@9|i| |<| |1+0#e000002&|;+0#e000e06&| +0#0000000&|#+0#0000e05&| |C|o|m@1|e|n|t| |3| +0#0000000&@47
+@9|i|++0#e000e06&@1|)+0#0000000&| |#+0#0000e05&| |C|o|m@1|e|n|t| |4| +0#0000000&@49
+@4|{| |#+0#0000e05&| |C|o|m@1|e|n|t| |5| +0#0000000&@57
+@8|p+0#af5f00255&|r|i|n|t| +0#0000000&|#+0#0000e05&| |C|o|m@1|e|n|t| |6| +0#0000000&@49
+@4|}| |#+0#0000e05&| |C|o|m@1|e|n|t| |7| +0#0000000&@57
+|}| |#+0#0000e05&| |C|o|m@1|e|n|t| |8| +0#0000000&@61
+@75
+|~+0#4040ff13&| @73
+|~| @73
+|~| @73
+|~| @73
+|~| @73
+|~| @73
+|~| @73
+|~| @73
+|~| @73
+|~| @73
+| +0#0000000&@56|1|,|1| @10|A|l@1| 
diff --git a/runtime/syntax/testdir/input/awk.awk b/runtime/syntax/testdir/input/awk.awk
new file mode 100644
index 0000000..337a1ce
--- /dev/null
+++ b/runtime/syntax/testdir/input/awk.awk
@@ -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
+