We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74615e5 commit f348620Copy full SHA for f348620
3 files changed
extensions/zed/extension.toml
@@ -0,0 +1,11 @@
1
+id = "modu-syntax"
2
+name = "Modu Syntax Highlighting"
3
+version = "1.0.0"
4
+schema_version = 1
5
+authors = ["Cyteon <me@cyteon.dev>"]
6
+description = "Syntax highlighting for modu files"
7
+repository = "https://github.com/cyteon/modu"
8
+
9
+[grammars.modu]
10
11
+path = "extensions/zed/languages/modu/"
extensions/zed/languages/modu/config.toml
@@ -0,0 +1,4 @@
+name = "Modu"
+grammar = "modu"
+path_suffixes = ["modu"]
+line_comments = ["// "]
extensions/zed/languages/modu/highlights.scm
@@ -0,0 +1,3 @@
+(string) @string
+(escape_sequence) @string.escape
+(number) @number
0 commit comments