在VS Code Explorer中导航

问题描述 投票:2回答:1

在VS代码的资源管理器侧栏中,如何使用ctrl+pctrl+n而不是上/下箭头键在文件之间导航?

visual-studio-code
1个回答
1
投票

将以下代码段添加到keybindings.json(您可以通过Open Keyboard Shortcuts (JSON)命令找到它)。

{
    "key": "ctrl+n",
    "command": "list.focusDown",
    "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !inputFocus"
},
{
    "key": "ctrl+p",
    "command": "list.focusUp",
    "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !inputFocus"
},
© www.soinside.com 2019 - 2024. All rights reserved.