如何将当前编辑器(选项卡)移动到当前编辑器组的开始或结束



我发现View: Move Editor Left(CtrlShiftPageUp)和View: Move Editor Right(CtrlShiftPageDown)将当前编辑器向左或向右移动。

但是,我找不到在当前编辑器组的开始或结束处移动当前编辑器(选项卡)的任何选项。类似于Firefox的Move Tab > Move To StartMove Tab > Move To End

如何将当前编辑器(选项卡)移动到当前编辑器组的开始或结束?

{
"key": "ctrl+shift+pageup",
"command": "moveActiveEditor",
"args": {
"to": "left",
"by": "tab",
"value": 25
}
},
{
"key": "ctrl+shift+pagedown",
"command": "moveActiveEditor",
"args": {
"to": "right",
"by": "tab",
"value": 25
}
},

请检查,Alex对Visual Studio代码的回答:热键将选项卡从当前位置移动到最前面?查看详细信息。

相关内容

最新更新