digital-ide/config/verilog.configuration.json
2024-10-09 17:40:58 +08:00

26 lines
680 B
JSON

{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["begin", "end"],
["case", "endcase"],
["function", "endfunction"],
["module", "endmodule"],
["task", "endtask"]
],
"autoClosingPairs": [
{"open":"(", "close":")", "notIn":["string", "comment"]},
{"open":"[", "close":"]", "notIn":["string", "comment"]},
{"open":"{", "close":"}", "notIn":["string", "comment"]},
{"open":"\"", "close":"\"", "notIn":["string", "comment"]},
{"open":"begin", "close":"end", "notIn":["string", "comment"]}
],
"onTypeFormatting": {
"autoFormatTriggerCharacters": ["\n"]
}
}