From 78613ac0f2d54a8c9474430ca1ee994a6d55a37b Mon Sep 17 00:00:00 2001 From: pithlessly <79002325+pithlessly@users.noreply.github.com> Date: Mon, 20 Mar 2023 10:51:26 -0700 Subject: [PATCH] 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. --- languages.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/languages.toml b/languages.toml index 73114a19..5a42d7a4 100644 --- a/languages.toml +++ b/languages.toml @@ -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" }