Unnamed repository; edit this file 'description' to name the repository.
queries: Fix module/namespace highlight in Unison
| -rw-r--r-- | runtime/queries/unison/highlights.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/queries/unison/highlights.scm b/runtime/queries/unison/highlights.scm index 4c8f0c23..eaf4c6bf 100644 --- a/runtime/queries/unison/highlights.scm +++ b/runtime/queries/unison/highlights.scm @@ -75,13 +75,13 @@ (regular_identifier) @special) ; NOTE: an effect is a special type ; Namespaces -(path) @module +(path) @namespace -(namespace) @module +(namespace) @namespace ; Terms (type_signature - term_name: (path) @module + term_name: (path) @namespace term_name: (regular_identifier) @variable) (type_signature |