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

Showing details for patch a16893681ef68f7dfaa76c2e57b81742d7e3851d.
2024-11-24 (Sun), 1:01 PM - ᛏᚩᛥᚪᛚ - a16893681ef68f7dfaa76c2e57b81742d7e3851d

more haskell numbers

Summary of changes
1 files modified with 3 lines added and 1 lines removed
  • after/queries/haskell/highlights.scm with 3 added and 1 removed lines
diff -rN -u old-nvim-tree-sitter-unicode-conceal/after/queries/haskell/highlights.scm new-nvim-tree-sitter-unicode-conceal/after/queries/haskell/highlights.scm
--- old-nvim-tree-sitter-unicode-conceal/after/queries/haskell/highlights.scm	2024-12-22 10:53:17.572920008 +0000
+++ new-nvim-tree-sitter-unicode-conceal/after/queries/haskell/highlights.scm	2024-12-22 10:53:17.572920008 +0000
@@ -24,6 +24,8 @@
 ((operator) @operator (#eq? @operator ".") (#set! conceal "∘"))
 
 (type ((name) @type) (#eq? @type "Bool") (#set! conceal "𝔹"))
-(type ((name) @type) (#eq? @type "Integer") (#set! conceal "ℤ"))
 (type ((name) @type) (#eq? @type "Natural") (#set! conceal "ℕ"))
+(type ((name) @type) (#eq? @type "Integer") (#set! conceal "ℤ"))
 (type ((name) @type) (#eq? @type "Real") (#set! conceal "ℝ"))
+(type ((name) @type) (#eq? @type "Rational") (#set! conceal "ℚ"))
+(type ((name) @type) (#eq? @type "Complex") (#set! conceal "ℂ"))