Disable auto-pairing ' by default in OCaml (#6381)

Since OCaml uses 'a syntax for type variables, the editor shouldn't insert a
second ', for the same reason as Rust.
pull/5/head
pithlessly 1 year ago committed by GitHub
parent 05e7862e8f
commit 78613ac0f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -775,6 +775,13 @@ comment-token = "(**)"
language-server = { command = "ocamllsp" }
indent = { tab-width = 2, unit = " " }
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
'`' = '`'
[[grammar]]
name = "ocaml"
source = { git = "https://github.com/tree-sitter/tree-sitter-ocaml", rev = "23d419ba45789c5a47d31448061557716b02750a", subpath = "ocaml" }
@ -789,6 +796,13 @@ comment-token = "(**)"
language-server = { command = "ocamllsp" }
indent = { tab-width = 2, unit = " " }
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
'`' = '`'
[[grammar]]
name = "ocaml-interface"
source = { git = "https://github.com/tree-sitter/tree-sitter-ocaml", rev = "23d419ba45789c5a47d31448061557716b02750a", subpath = "interface" }

Loading…
Cancel
Save