mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 02:40:09 -04:00
feat: add indents for ocaml and ocaml interface (#4725)
This commit is contained in:
parent
c39b5d3fd7
commit
b4d2640eab
2 changed files with 70 additions and 0 deletions
69
queries/ocaml/indents.scm
Normal file
69
queries/ocaml/indents.scm
Normal file
|
|
@ -0,0 +1,69 @@
|
||||||
|
[
|
||||||
|
(let_binding) ; let = ...
|
||||||
|
(type_binding)
|
||||||
|
|
||||||
|
(external)
|
||||||
|
(record_declaration) ; { foo: bar ... }
|
||||||
|
(structure) ; struct ... end
|
||||||
|
(signature) ; sig ... end
|
||||||
|
(value_specification) ; val x: bar
|
||||||
|
|
||||||
|
(do_clause) ; do ... done
|
||||||
|
(match_case)
|
||||||
|
|
||||||
|
(field_expression)
|
||||||
|
(application_expression)
|
||||||
|
(parenthesized_expression) ; ( ... )
|
||||||
|
(record_expression) ; { foo = bar ... }
|
||||||
|
(list_expression) ; [...;...]
|
||||||
|
(try_expression) ; try ... with
|
||||||
|
] @indent.begin
|
||||||
|
|
||||||
|
; handle if-else if-else case
|
||||||
|
(if_expression
|
||||||
|
condition: (_) @indent.begin)
|
||||||
|
(then_clause) @indent.begin
|
||||||
|
((else_clause
|
||||||
|
(_) @_not_if) @indent.begin
|
||||||
|
(#not-has-type? @_not_if if_expression))
|
||||||
|
|
||||||
|
((parameter) @indent.begin
|
||||||
|
(#set! indent.start_at_same_line))
|
||||||
|
|
||||||
|
(_ (ERROR) @indent.begin
|
||||||
|
(#set! indent.start_at_same_line))
|
||||||
|
|
||||||
|
(ERROR "|" @indent.begin
|
||||||
|
(#set! indent.start_at_same_line))
|
||||||
|
|
||||||
|
|
||||||
|
(try_expression
|
||||||
|
"with" @indent.branch
|
||||||
|
[
|
||||||
|
(match_case) @indent.dedent
|
||||||
|
(match_case
|
||||||
|
[
|
||||||
|
(parenthesized_expression)
|
||||||
|
(list_expression)
|
||||||
|
] @indent.dedent)
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
[
|
||||||
|
"}"
|
||||||
|
] @indent.branch @indent.end
|
||||||
|
|
||||||
|
|
||||||
|
(list_expression "]" @indent.branch)
|
||||||
|
(parenthesized_expression ")" @indent.branch)
|
||||||
|
|
||||||
|
";;" @indent.end
|
||||||
|
|
||||||
|
(do_clause "done" @indent.end @indent.branch)
|
||||||
|
(structure "end" @indent.end @indent.branch)
|
||||||
|
(signature "end" @indent.end @indent.branch)
|
||||||
|
|
||||||
|
[
|
||||||
|
(string)
|
||||||
|
(comment)
|
||||||
|
] @indent.auto
|
||||||
1
queries/ocaml_interface/indents.scm
Normal file
1
queries/ocaml_interface/indents.scm
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
; inherits: ocaml
|
||||||
Loading…
Add table
Add a link
Reference in a new issue