mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 20:01:33 +00:00
Add support for .markdown extension (#13609)
Fixes #13608 Release Notes: - Added recognizing *.markdown files as Markdown ([#13608](https://github.com/zed-industries/zed/issues/13608)).
This commit is contained in:
parent
6e1b99b039
commit
891f195f7b
2 changed files with 2 additions and 1 deletions
|
@ -94,6 +94,7 @@
|
||||||
"lua": "lua",
|
"lua": "lua",
|
||||||
"m4a": "audio",
|
"m4a": "audio",
|
||||||
"m4v": "video",
|
"m4v": "video",
|
||||||
|
"markdown": "document",
|
||||||
"md": "document",
|
"md": "document",
|
||||||
"mdb": "storage",
|
"mdb": "storage",
|
||||||
"mdf": "storage",
|
"mdf": "storage",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name = "Markdown"
|
name = "Markdown"
|
||||||
grammar = "markdown"
|
grammar = "markdown"
|
||||||
path_suffixes = ["md", "mdx", "mdwn"]
|
path_suffixes = ["md", "mdx", "mdwn", "markdown"]
|
||||||
word_characters = ["-"]
|
word_characters = ["-"]
|
||||||
brackets = [
|
brackets = [
|
||||||
{ start = "{", end = "}", close = true, newline = true },
|
{ start = "{", end = "}", close = true, newline = true },
|
||||||
|
|
Loading…
Reference in a new issue