当前的功能是给我一个下拉选项,选择哪个选项卡是如此烦人。是否有可能删除它,使标签将像在一些现代网络浏览器。
当前回答
苹果操作系统
前置标签:Shift + Cmd + [
下一选项卡:Shift + Cmd +]
Mac OS(可选)
上一页选项卡:Cmnd+Alt+←
下一个选项卡:Cmnd + Alt + →
窗口:
上一页:Ctrl + Shift + tab
下一个选项卡:Ctrl + tab
Linux / Windows(可选):
上一页:Ctrl +下一页
下一个选项卡:Ctrl + Page Up
其他回答
@Combii我找到了交换的方法
CMD+1、CMD+2、CMD+3、CTRL+1、CTRL+2、CTRL+3、
在macOS系统下,转到:
代码>首选项>键盘快捷键
在那个页面上,点击页面右上方的按钮…
并添加下面的配置,然后保存。
[
{
"key": "cmd+0",
"command": "workbench.action.openLastEditorInGroup"
},
{
"key": "cmd+1",
"command": "workbench.action.openEditorAtIndex1"
},
{
"key": "cmd+2",
"command": "workbench.action.openEditorAtIndex2"
},
{
"key": "cmd+3",
"command": "workbench.action.openEditorAtIndex3"
},
{
"key": "cmd+4",
"command": "workbench.action.openEditorAtIndex4"
},
{
"key": "cmd+5",
"command": "workbench.action.openEditorAtIndex5"
},
{
"key": "cmd+6",
"command": "workbench.action.openEditorAtIndex6"
},
{
"key": "cmd+7",
"command": "workbench.action.openEditorAtIndex7"
},
{
"key": "cmd+8",
"command": "workbench.action.openEditorAtIndex8"
},
{
"key": "cmd+9",
"command": "workbench.action.openEditorAtIndex9"
},
{
"key": "ctrl+1",
"command": "workbench.action.focusFirstEditorGroup"
},
{
"key": "ctrl+2",
"command": "workbench.action.focusSecondEditorGroup"
},
{
"key": "ctrl+3",
"command": "workbench.action.focusThirdEditorGroup"
}
]
您现在可以使用CMD+[1-9]切换选项卡和CTRL+[1-3]聚焦编辑器组!希望这个答案对你有帮助。
Visual Studio Code v1.35.0允许您设置(Ctrl+Tab) / (Shift+Ctrl+Tab)键序列,通过将这些键序列分别绑定到命令“View: Open Next Editor”和“View: Open Previous Editor”来依次在编辑器之间切换。
在macOS:
导航到:代码>首选项>键盘快捷键 搜索或导航到以下两个选项: 查看:打开“下一步编辑器” 查看:打开以前的编辑器 将两个键绑定更改为所需的键序列。 查看:打开下一个编辑器-> (Ctrl+Tab) 查看:打开以前的编辑器-> (Shift+Ctrl+Tab) 您可能会遇到冲突的绑定。如果是,请注意该命令并重新分配或删除现有的键绑定。
如果你搞砸了,你可以通过右键单击任何键绑定并选择“重置键绑定”来恢复到给定绑定的默认状态。
使用Sublime文本键图。更直观了。
⌘k⌘m
导入Sublime文本键图:
Name: Sublime Text Keymap and Settings Importer
Id: ms-vscode.sublime-keybindings
Description: Import Sublime Text settings and keybindings into VS Code.
Version: 4.0.3
Publisher: Microsoft
VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=ms-vscode.sublime-keybindings
linux……我使用ctrl+pageUp或pageDown
窗户
以前的
Ctrl + Shift + Tab
Next
Ctrl + Tab
苹果操作系统
以前的
移位+ Cmd + [
Next
Shift + Cmd +]
推荐文章
- 如何设置每个文件类型的标签大小?
- 我如何添加环境变量启动。VSCode中的json
- 如何格式化Visual Studio Code项目中的所有文件?
- Pylint在Visual Studio代码中“未解决的导入”错误
- 如何在VS Code中默认打开文本换行
- 在Visual Studio代码中更改突出显示文本的颜色
- Visual studio代码-键盘快捷键-全部展开/折叠
- Visual Studio Code无法检测已安装的Git
- 禁用Visual Studio代码中的工具提示提示
- Visual Studio Code -将空格转换为制表符
- 在VSCode中的列自动硬换行
- Visual Studio Code:格式没有使用缩进设置
- 如何排除文件扩展名和语言从“格式保存”在VSCode?
- Visual Studio代码- URI的目标不存在" package:flutter/material.dart "
- VSCode——如何设置调试Python程序的工作目录