1
Fork 0
mirror of https://github.com/Steffo99/riscv-plus.git synced 2024-10-16 14:37:34 +00:00
riscv-plus/language-configuration.json

20 lines
502 B
JSON
Raw Normal View History

2019-05-13 17:16:03 +00:00
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "#",
},
// symbols used as brackets
"brackets": [
["(", ")"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["(", ")"],
["\"", "\""]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["(", ")"],
["\"", "\""]
]
}