~toastal/nvim-tree-sitter-unicode-conceal

Showing details for patch fe864edc1ec0261b40483e51b334852b2b47925c.
2024-05-19 (Sun), 11:11 AM - toastal - fe864edc1ec0261b40483e51b334852b2b47925c

weak type checking is now almost eq

Summary of changes
2 files modified with 8 lines added and 8 lines removed
  • after/queries/erlang/highlights.scm with 4 added and 4 removed lines
  • after/queries/php/highlights.scm with 4 added and 4 removed lines
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 23:20:41.589245318 +0000
+++ new-nvim-tree-sitter-unicode-conceal/after/queries/erlang/highlights.scm	2024-11-21 23:20:41.589245318 +0000
@@ -12,10 +12,10 @@
 (":=" @operator (#set! conceal "⩴"))
 ("?=" @operator (#set! conceal "≟"))
 
-("==" @operator (#set! conceal "="))
-("/=" @operator (#set! conceal "≠"))
-("=:=" @operator (#set! conceal "≡"))
-("=/=" @operator (#set! conceal "≢"))
+("==" @operator (#set! conceal "≈"))
+("/=" @operator (#set! conceal "≉"))
+("=:=" @operator (#set! conceal "="))
+("=/=" @operator (#set! conceal "≠"))
 ("=<" @operator (#set! conceal "≤"))
 (">=" @operator (#set! conceal "≥"))
 ("*" @operator (#set! conceal "×"))
diff -rN -u old-nvim-tree-sitter-unicode-conceal/after/queries/php/highlights.scm new-nvim-tree-sitter-unicode-conceal/after/queries/php/highlights.scm
--- old-nvim-tree-sitter-unicode-conceal/after/queries/php/highlights.scm	2024-11-21 23:20:41.589245318 +0000
+++ new-nvim-tree-sitter-unicode-conceal/after/queries/php/highlights.scm	2024-11-21 23:20:41.589245318 +0000
@@ -11,10 +11,10 @@
 ("?->" @operator (#set! conceal "⇨"))
 ("??" @operator (#set! conceal "⁇"))
 
-("==" @operator (#set! conceal "="))
-(["!=" "<>"] @operator (#set! conceal "≠"))
-("===" @operator (#set! conceal "≡"))
-("!==" @operator (#set! conceal "≢"))
+("==" @operator (#set! conceal "≈"))
+(["!=" "<>"] @operator (#set! conceal "≉"))
+("===" @operator (#set! conceal "="))
+("!==" @operator (#set! conceal "≠"))
 ("<=" @operator (#set! conceal "≤"))
 ("<=" @operator (#set! conceal "≥"))
 ("<=>" @operator (#set! conceal "⇔"))