gpt4 book ai didi

visual-studio-code - 是否有将焦点移至 Visual Studio Code 侧边栏的快捷方式?

转载 作者:行者123 更新时间:2023-12-03 11:47:11 29 4
gpt4 key购买 nike

如果在 Visual Studio Code 中有用于将焦点移动到侧边栏的键盘快捷键,这对我来说将非常有用。我看过问题Is there a shortcut to hide the side bar in Visual Studio Code?但这不是我想要的。

我想在不使用鼠标的情况下获得焦点,这样我就可以选择侧栏中列出的另一个文件而无需使用鼠标。

最佳答案

Ctrl 0 是 View: Focus into Side Bar 命令的默认绑定(bind),该命令聚焦侧边栏,无论它现在显示什么 - 无论是资源管理器、源代码管理、扩展还是任何其他 Pane 。 (或显示其最后可见状态。)
此组合键中的零 (0) 表示顶部“数字”行中的“English-keyboard-layout”零键在当前区域键盘布局中产生的字符。是不是 数字键盘中的零键。
与大多数其他操作一样,它可以在命令面板(F1 或 CtrlShiftP)中轻松发现:
command palette with query: (greater-than sign) focus sidebar. Sole highlighted result reads "View: focus into Side Bar", words "focus" and "side bar" are emphasized. Keyboard shortcut hint reads "Ctrl + é" (control key plus Latin letter E with acute)
(注意 é 而不是 0 由于上述区域布局有效),或在键盘快捷键设置页面 (CtrlK CtrlS):
VSC Keyboard Shortcuts settings with query "focus sidebar" showing sole Command result: "Focus into Side Bar", words "focus" and "side bar" are emphasized. There is the command ID that reads "workbench.action.focusSideBar"

顺便说一句 Ctrl1 .. 3 分别关注编辑组。

如果您希望此(或其他)组合键的作用类似于 编辑器和侧边栏之间的两种“焦点切换” (如 Show Explorer 的行为),您可以使用具有相同键组合的不同操作相应地更改您的设置,通过排除 "when" 来区分。条件。 keybindings.json 的结果部分将会

  { // Unbind unconditional default
"key": "ctrl+0",
"command": "-workbench.action.focusSideBar"
},
{ // to ←
"key": "ctrl+0",
"when": "!sideBarFocus",
"command": "workbench.action.focusSideBar"
},
{ // from →
"key": "ctrl+0",
"when": "sideBarFocus",
"command": "workbench.action.focusActiveEditorGroup"
},

关于visual-studio-code - 是否有将焦点移至 Visual Studio Code 侧边栏的快捷方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49662075/

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