mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-27 15:01:22 +08:00
29 lines
626 B
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": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
]
|
|
}
|