mirror of https://github.com/helix-editor/helix
add more quote types to markdown autopairs
parent
1315b7e2b1
commit
2578f1b480
|
@ -1746,6 +1746,17 @@ language-servers = [ "marksman", "markdown-oxide" ]
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
block-comment-tokens = { start = "<!--", end = "-->" }
|
block-comment-tokens = { start = "<!--", end = "-->" }
|
||||||
|
|
||||||
|
[language.auto-pairs]
|
||||||
|
'(' = ')'
|
||||||
|
'{' = '}'
|
||||||
|
'[' = ']'
|
||||||
|
'"' = '"'
|
||||||
|
"'" = "'"
|
||||||
|
'`' = '`'
|
||||||
|
'‘' = '’'
|
||||||
|
'«' = '»'
|
||||||
|
'“' = '”'
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "markdown"
|
name = "markdown"
|
||||||
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-markdown", rev = "62516e8c78380e3b51d5b55727995d2c511436d8", subpath = "tree-sitter-markdown" }
|
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-markdown", rev = "62516e8c78380e3b51d5b55727995d2c511436d8", subpath = "tree-sitter-markdown" }
|
||||||
|
|
Loading…
Reference in New Issue