1 Star 0 Fork 0

ZHJEE/OrCAD_Capture_TCL_Extension_for_VScode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
language-configuration.json 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
{
"capabilities": {
"documentOnTypeFormattingProvider": {
"firstTriggerCharacter": "}",
"moreTriggerCharacter": [
";",
","
]
},
"documentRangeFormattingProvider": "true",
"renameProvider": "true",
"documentHighlightProvider": "true",
"referencesProvider": "true"
},
"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": [
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "\"",
"close": "\"",
"notIn": [
"string"
]
}
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
],
[
"\"",
"\""
]
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/ZHJEE/OrCAD_Capture_TCL.git
git@gitee.com:ZHJEE/OrCAD_Capture_TCL.git
ZHJEE
OrCAD_Capture_TCL
OrCAD_Capture_TCL_Extension_for_VScode
master

搜索帮助