Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>QuickCloseNew to Visual Studio Code? Get it now.
QuickClose

QuickClose

wuqzh8

|
56 installs
| (0) | Free
Automatically inserts missing closing symbols at the end of the line, based on stack order.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

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"] },
  ]
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft