languages: Fix ( wouldn’t autocomplete when . is preceded by it in Markdown (#33705)

Closes #5092

Release Notes:

- Fixed issue where `(` wouldn’t autocomplete when `.` is preceded by it
in Markdown.
This commit is contained in:
Smit Barmase 2025-07-01 16:51:46 +05:30 committed by GitHub
parent 782fbfad90
commit 3151b5efc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 },