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

Kirill Bulatov created

Release Notes:

- Allowed wrapping markdown text into `*` by selecting text and writing
the `*`

Change summary

crates/languages/src/markdown/config.toml | 1 +
1 file changed, 1 insertion(+)

Detailed changes

crates/languages/src/markdown/config.toml 🔗

@@ -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+",