Change summary
extensions/ocaml/extension.toml | 4 ++++
extensions/ocaml/languages/dune/config.toml | 8 ++++++++
extensions/ocaml/languages/dune/highlights.scm | 5 +++++
extensions/ocaml/languages/dune/injections.scm | 2 ++
4 files changed, 19 insertions(+)
Detailed changes
@@ -19,3 +19,7 @@ path = "grammars/ocaml"
repository = "https://github.com/tree-sitter/tree-sitter-ocaml"
commit = "0b12614ded3ec7ed7ab7933a9ba4f695ba4c342e"
path = "grammars/interface"
+
+[grammars.dune]
+repository = "https://github.com/WHForks/tree-sitter-dune"
+commit = "b3f7882e1b9a1d8811011bf6f0de1c74c9c93949"
@@ -0,0 +1,8 @@
+name = "Dune"
+grammar = "dune"
+path_suffixes = ["dune", "dune-project"]
+brackets = [
+ { start = "(", end = ")", close = true, newline = true },
+ { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] }
+]
+tab_size = 2
@@ -0,0 +1,5 @@
+(stanza_name) @function
+(field_name) @property
+(quoted_string) @string
+(multiline_string) @string
+(action_name) @keyword
@@ -0,0 +1,2 @@
+((ocaml_syntax) @injection.content
+ (#set! injection.language "ocaml"))