elvish/vscode/language-configuration.json

29 lines
626 B
JSON

{
"comments": {
"lineComment": "#",
},
// Barewords and variables have different patterns. This is the pattern for
// variables because it's more important for VS Code to recognize variable
// names properly.
"wordPattern": "[\\w\\d_:~-]+",
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}