如何配置 V.S。自动关闭括号的代码?
How can I configure V.S. Code to auto close brackets?
V.S。代码:自动关闭括号
"I would like if V.S. Code
automatically closed brackets for me when I insert opening brackets into my code."
示例:
通常当左括号键——即{——在任意软件中被按下时,一个左括号被添加到文档中,光标位于它的右侧,如下所示.
{ |
NOTE: "The |
is used to show the position of the cursor."
当按下左括号键时,我希望 V.S。代码添加了一对括号,光标位于它们之间,如下所示。
{ | }
NOTE: "The |
is used to show the position of the cursor."
获取 VSCode 以自动键入右括号
You need to add the configuration below to your settings.json
file, preferably the one in your workspace as tools & extensions override the workspace setting.json
file less often.
"editor.autoClosingBrackets": "always"
如果它仍然无法正常工作,那么您需要在禁用所有扩展的情况下重新启动 VSCode。确保上面的配置正确,然后重试以确保设置没有被扩展覆盖。
如果您只是找不到上面的配置应该可以正常工作,但是,如果您遇到问题,请尝试 运行 VSCode 并禁用扩展,看看是否可以解决问题.我过去遇到过一个问题,在我的 VSCode 实例中,扩展导致了自动关闭括号问题。更不用说,在对 VSCode 中的某些内容进行故障排除时,您应该始终做的第一件事就是测试禁用扩展时是否会出现问题,这样您就可以排除扩展,或者知道它是一个扩展。
它应该在启用所有扩展的情况下正常工作,但我有一个同事,他无法让括号工作,这是因为他的一个扩展中添加了最近的更新。
V.S。代码:自动关闭括号
"I would like if
V.S. Code
automatically closed brackets for me when I insert opening brackets into my code."
示例:
通常当左括号键——即{——在任意软件中被按下时,一个左括号被添加到文档中,光标位于它的右侧,如下所示.
{ |
NOTE: "The
|
is used to show the position of the cursor."
当按下左括号键时,我希望 V.S。代码添加了一对括号,光标位于它们之间,如下所示。
{ | }
NOTE: "The
|
is used to show the position of the cursor."
获取 VSCode 以自动键入右括号
You need to add the configuration below to your
settings.json
file, preferably the one in your workspace as tools & extensions override the workspacesetting.json
file less often.
"editor.autoClosingBrackets": "always"
如果它仍然无法正常工作,那么您需要在禁用所有扩展的情况下重新启动 VSCode。确保上面的配置正确,然后重试以确保设置没有被扩展覆盖。
如果您只是找不到上面的配置应该可以正常工作,但是,如果您遇到问题,请尝试 运行 VSCode 并禁用扩展,看看是否可以解决问题.我过去遇到过一个问题,在我的 VSCode 实例中,扩展导致了自动关闭括号问题。更不用说,在对 VSCode 中的某些内容进行故障排除时,您应该始终做的第一件事就是测试禁用扩展时是否会出现问题,这样您就可以排除扩展,或者知道它是一个扩展。
它应该在启用所有扩展的情况下正常工作,但我有一个同事,他无法让括号工作,这是因为他的一个扩展中添加了最近的更新。