From 3151b5efc178034cf1a148481a927124db40384c Mon Sep 17 00:00:00 2001 From: Smit Barmase Date: Tue, 1 Jul 2025 16:51:46 +0530 Subject: [PATCH] =?UTF-8?q?languages:=20Fix=20`(`=20wouldn=E2=80=99t=20aut?= =?UTF-8?q?ocomplete=20when=20`.`=20is=20preceded=20by=20it=20in=20Markdow?= =?UTF-8?q?n=20(#33705)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #5092 Release Notes: - Fixed issue where `(` wouldn’t autocomplete when `.` is preceded by it in Markdown. --- crates/languages/src/markdown/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/languages/src/markdown/config.toml b/crates/languages/src/markdown/config.toml index fec542c4d6..059e52de94 100644 --- a/crates/languages/src/markdown/config.toml +++ b/crates/languages/src/markdown/config.toml @@ -3,7 +3,7 @@ grammar = "markdown" path_suffixes = ["md", "mdx", "mdwn", "markdown", "MD"] completion_query_characters = ["-"] block_comment = [""] -autoclose_before = "}])>" +autoclose_before = ";:.,=}])>" brackets = [ { start = "{", end = "}", close = true, newline = true }, { start = "[", end = "]", close = true, newline = true },