gpt4 book ai didi

visual-studio-code - 如何设置热键将光标移出引号/括号?

转载 作者:行者123 更新时间:2023-12-04 15:08:30 25 4
gpt4 key购买 nike

在 Sublime 中,我可以轻松设置一个更复杂的热键,让我通过按 Enter 退出引号和括号。它在下面:

    // Move out of single and double quotes with `Enter`
{
"keys": ["enter"],
"command": "move",
"args": {"by": "characters", "forward": true},
"context": [
{ "key": "following_text", "operator": "regex_match", "operand": "(?:\"|').*", "match_all": true },

{ "key": "preceding_text", "operator": "regex_contains", "operand": "(?:\"|')", "match_all": true }
]
},

在 VS Code 中,有什么方法可以实现这一点吗?这在 keybindings.json移动光标,但当我不想要时它也处于事件状态。谢谢。
    { "key": "enter",    "command": "cursorRight",
"when": "editorTextFocus" }

最佳答案

查看此扩展程序,它可以满足您的需求 - https://marketplace.visualstudio.com/items?itemName=albert.TabOut

你可以在这里找到实现 - https://github.com/albertromkes/tabout

关于visual-studio-code - 如何设置热键将光标移出引号/括号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40205809/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com