如何在Visual Studio代码中一次导航段落或代码块?
被叫"阻止旅行"在其他编辑......
我似乎无法使匹配的支架导航工作。
http://vim.wikia.com/wiki/Jumping_to_the_start_and_end_of_a_code_block Code block structure highlighting extension for Visual Studio Code
答案 0 :(得分:1)
我在 GitHub 上找到了 this issue,它讨论了按段落/代码块进行光标导航。要启用此功能,您需要执行以下操作:
在 VSCode 中打开键盘快捷键列表(在 Windows 上为 Ctrl+K Ctrl+S)。
点击窗格右上角的“打开键盘快捷键 (JSON)”图标(看起来像一个带有箭头的页面)。
在出现的文件的方括号之间复制以下几行:
{
"key": "ctrl+down",
"command": "cursorMove",
"when": "editorTextFocus",
"args": {
"to": "nextBlankLine",
"by": "wrappedLine"
}
},
{
"key": "ctrl+up",
"command": "cursorMove",
"when": "editorTextFocus",
"args": {
"to": "prevBlankLine",
"by": "wrappedLine"
}
}
保存文件。
您可以通过更改 "key":
之后的内容将这些分配给您想要的任何键绑定。