Allow wrapping markdown text into * by selecting text and writing the * (#37426)

Release Notes:

- Allowed wrapping markdown text into `*` by selecting text and writing
the `*`
This commit is contained in:
Kirill Bulatov
2025-09-03 05:50:53 +00:00
committed by GitHub
parent 5a9e18603d
commit 8d5861322b
@@ -12,6 +12,7 @@ brackets = [
{ start = "\"", end = "\"", close = false, newline = false },
{ start = "'", end = "'", close = false, newline = false },
{ start = "`", end = "`", close = false, newline = false },
{ start = "*", end = "*", close = false, newline = false, surround = true },
]
rewrap_prefixes = [
"[-*+]\\s+",