quickclose
Automatically inserts missing closing symbols at the end of the line, based on stack order.
自动根据堆栈顺序在行尾补全缺失的符号。
Commands
// `ctrl+shift+p`
{"command": "quickclose.AutoComplete", "title": "quickclose: auto complete all missing symbols."}
Settings
quickclose.pairs :
自定义需要补全的符号对
Customize the list of paired symbols for auto completion.
// in settings.json
// default:
"quickclose.pairs": {
"(": ")",
"{": "}",
"[": "]",
"`": "`",
"'": "'",
"\"": "\"",
"<": ">"
}
with vscodeVim
// in Settings.json
"vim.normalModeKeyBindingsNonRecursive": [
{ "before": ["<space>", "a"], "commands": ["quickclose.AutoComplete"] },
]
| |