VSC,如何将“拆分编辑器”更改为水平?

时间:2019-09-28 22:53:55

标签: visual-studio-code

我希望能够在读取当前行之前的行时编辑同一文件。鉴于当今我们进行链接,此垂直行业不是我想要的

enter image description here

我想要的是另一种方式。

我花了很多时间才找到控制它的名称“ workbench.editor”。但是VSC版本更新将其删除。现在无法设置。当前的VSC 1.38.1。

2 个答案:

答案 0 :(得分:2)

如果您想重新绑定分割编辑器命令,请在您的keybindings.json中尝试:

{                         // unbind the default split keybinding
                          // probably unnecessary to do this but I suggest it
  "key": "ctrl+\\",
  "command": "-workbench.action.splitEditor"
}

{                        // reset the split command to horizontal split
  "key": "ctrl+\\",
  "command": "workbench.action.splitEditorDown"
}

它不会对拆分编辑器图标的操作产生任何影响-尚不清楚这是否是您想要的。

更改键绑定将导致 Ctrl + \ 现在会水平拆分,而不是向右拆分。


正如@ Jeb50在评论中指出的那样,您可以通过Open Side by Side Direction设置更改拆分编辑器图标的外观和功能。如下所示:

split editor direction setting

答案 1 :(得分:0)

选择“视图”>“编辑器布局”>“拆分”。

有很多选择。

Example Here!