diff options
author | Blaž Hrastnik | 2021-09-03 01:39:30 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-09-06 06:25:46 +0000 |
commit | 9b9c3c77f88af1ff798739aaa3303d563bbe8174 (patch) | |
tree | 786c02201d57527ce198f0194c71f2c0cf8f7615 /runtime/queries/lua | |
parent | 64099af3f1f5957de8f4203c665063d02ba4bac9 (diff) |
runtime: Query improvements
Diffstat (limited to 'runtime/queries/lua')
-rw-r--r-- | runtime/queries/lua/highlights.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/queries/lua/highlights.scm b/runtime/queries/lua/highlights.scm index 4e68cd66..756ab3b7 100644 --- a/runtime/queries/lua/highlights.scm +++ b/runtime/queries/lua/highlights.scm @@ -23,27 +23,27 @@ "for" "do" "end" -] @keyword.control.loop) +] @keyword.control.repeat) (for_in_statement [ "for" "do" "end" -] @keyword.control.loop) +] @keyword.control.repeat) (while_statement [ "while" "do" "end" -] @keyword.control.loop) +] @keyword.control.repeat) (repeat_statement [ "repeat" "until" -] @keyword.control.loop) +] @keyword.control.repeat) (do_statement [ |