~toastal/nvim-tree-sitter-unicode-conceal
Showing details for patch 6fc5d6049c3b7af92814282026c43a8c474aa5d8.
diff -rN -u old-nvim-tree-sitter-unicode-conceal/after/queries/erlang/highlights.scm new-nvim-tree-sitter-unicode-conceal/after/queries/erlang/highlights.scm --- old-nvim-tree-sitter-unicode-conceal/after/queries/erlang/highlights.scm 2024-11-21 17:47:32.700759789 +0000 +++ new-nvim-tree-sitter-unicode-conceal/after/queries/erlang/highlights.scm 2024-11-21 17:47:32.700759789 +0000 @@ -23,7 +23,7 @@ ("or" @operator (#set! conceal "∨")) ("xor" @operator (#set! conceal "⊻")) -("-" @operator (#set! conceal "˗")) +("-" @operator (#set! conceal "−")) ("*" @operator (#set! conceal "×")) ; welp… upstream parser is broken currently (ERROR ("/" @operator ) !arity (#set! conceal "÷")) diff -rN -u old-nvim-tree-sitter-unicode-conceal/after/queries/lua/highlights.scm new-nvim-tree-sitter-unicode-conceal/after/queries/lua/highlights.scm --- old-nvim-tree-sitter-unicode-conceal/after/queries/lua/highlights.scm 2024-11-21 17:47:32.700759789 +0000 +++ new-nvim-tree-sitter-unicode-conceal/after/queries/lua/highlights.scm 2024-11-21 17:47:32.700759789 +0000 @@ -17,7 +17,7 @@ ("<=" @operator (#set! conceal "≤")) (">=" @operator (#set! conceal "≥")) -("-" @operator (#set! conceal "˗")) +("-" @operator (#set! conceal "−")) ("*" @operator (#set! conceal "×")) ("/" @operator (#set! conceal "÷")) (unary_expression ("-" @number) (#set! conceal "⁻"))