Unnamed repository; edit this file 'description' to name the repository.
feat: Highlight `=` and `;` in `.proto` files (#12339)
| -rw-r--r-- | runtime/queries/protobuf/highlights.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/queries/protobuf/highlights.scm b/runtime/queries/protobuf/highlights.scm index c35c430e..6deee7df 100644 --- a/runtime/queries/protobuf/highlights.scm +++ b/runtime/queries/protobuf/highlights.scm @@ -55,4 +55,12 @@ "]" "{" "}" -] @punctuation.bracket
\ No newline at end of file +] @punctuation.bracket + +[ + "=" +] @operator + +[ + ";" +] @punctuation.delimiter |