在VS Code Explorer中导航
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在VS Code Explorer中导航相关的知识,希望对你有一定的参考价值。
在VS代码的资源管理器侧栏中,如何使用ctrl+p
和ctrl+n
而不是上/下箭头键在文件之间导航?
答案
将以下代码段添加到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"
},
以上是关于在VS Code Explorer中导航的主要内容,如果未能解决你的问题,请参考以下文章