VSCode 拆分编辑器移动文件而不是复制

VSCode split editor move file instead of copy

我最近转到了 Visual Studio 代码并且有一个问题我已经找到了答案。

当我拆分编辑器时,它会在拆分的两边显示焦点文件。

我希望焦点文件随拆分一起移动,而不是显示重复视图。

是否有我可以用来执行此拆分/移动的设置或扩展?

尝试 Move Editor into next Group 命令:

{
  "key": "ctrl+cmd+right",
  "command": "workbench.action.moveEditorToNextGroup"
}

在 mac 默认快捷方式是:

control+command+ -> 或 <- 箭头 ;-)

就个人而言,我总是使用 ctrl+enter 组合在侧边编辑器中打开下一个文件。到目前为止,这是我一直使用的最推荐的方式。

Windowsvscode v1.59.0

将文件移动到
单击要聚焦的文件:
ctrl+alt+右箭头

将文件移动到
单击要聚焦的文件:
ctrl+alt+左箭头

Ubuntu (20.04) 中,键绑定与 windows 中的相同: ctrl + alt + rightctrl + alt + left 然而 gnome 阻止了这些键绑定。为了解放他们,运行 在终端中更改 gnome 设置的以下内容:

gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-left "[]"
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-right "[]"

之后,它应该可以工作了。

另请参阅: Some VSCode Keybindings not working in Ubuntu

并且:

https://askubuntu.com/questions/1041914/something-blocks-ctrlaltleft-right-arrow-keyboard-combination

https://github.com/microsoft/vscode/issues/6197