diff options
| author | Omar Valdez <omarantoniovaldezf2@gmail.com> | 2024-07-27 16:28:19 -0700 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-07-28 11:43:41 +0200 |
| commit | 51bba660a89e0027929206b622c9c1cbdd995cfb (patch) | |
| tree | 412313302f69c4dbd191f99c1529017455ad3429 /queries/erlang | |
| parent | feat(latex): capture left/right math delimiters (diff) | |
| download | nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.gz nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.bz2 nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.lz nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.xz nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.zst nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.zip | |
refactor(queries): Remove quotes from properties in set! directive
Diffstat (limited to 'queries/erlang')
| -rw-r--r-- | queries/erlang/highlights.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/queries/erlang/highlights.scm b/queries/erlang/highlights.scm index 1ce046689..8bba348d9 100644 --- a/queries/erlang/highlights.scm +++ b/queries/erlang/highlights.scm @@ -1,5 +1,5 @@ ((atom) @constant - (#set! "priority" "90")) + (#set! priority "90")) (var) @variable @@ -86,15 +86,15 @@ ; Macros ((macro_call_expr) @constant.macro - (#set! "priority" 101)) + (#set! priority 101)) ; Preprocessor (pp_define lhs: _ @constant.macro - (#set! "priority" 101)) + (#set! priority 101)) (_preprocessor_directive) @keyword.directive -(#set! "priority" 99) +(#set! priority 99) ; Attributes (pp_include) @keyword.import @@ -108,7 +108,7 @@ (export_type_attribute types: (fa fun: _ @type - (#set! "priority" 101))) + (#set! priority 101))) (behaviour_attribute) @keyword.import |
