如何在vimdiff中的垂直拆分和水平拆分之间切换?

| 我已经知道如何使用“ 0”变量启动水平/垂直分割的差异模式,但是当我已经打开两个文件进行比较时,不知道如何在两者之间切换。 我尝试了在较早的帖子中找到的被接受的答案,但无济于事。 Ctrl + W命令对我不起作用。也许是因为我在Windows友好模式下运行gVim?     
已邀请:
以下命令将垂直拆分更改为水平拆分: ctrl + w然后J 要改回垂直拆分,请使用以下任一方法: ctrl + w H或ctrl + w L 有关移动窗口的更多信息:
:h window-moving
:h ctrl-w_J
:h ctrl-w_K
:h ctrl-w_H
:h ctrl-w_L
    
您也可以按
ctrl-w
+
<arrow key>
选择窗口。     
我很晚,但是也许这是一个有趣的解决方案。 @PeterRincker的解决方案仅在您仅打开几个没有内部窗口的窗口时才有效。 我在我想与您共享的运行时配置中找到了这个(有用的)函数。它应被映射为键绑定,并让用户将当前拆分切换到指定的拆分。标记它不会在垂直和水平之间切换,但是用户可以告诉他他喜欢哪一个(也可以在当前处于活动状态,如果这种情况没有道理。)Vim窗口树总是有两个窗口作为\“伙伴\”。调整窗口大小时,这种效果也是可见的。我想说的是:触发函数,如果适用于当前活动的窗口及其“伙伴”窗口。
\" Switch to a vertical or horizontal split between two windows.
\" Switching to currently used split results into the equal split.
\" This is between the current window and the one window which is focused, when close the active window.
\" This function does not adjust the windows height after the switch, cause this can\'t work correctly.
\" 
\" Arguments:
\"   horizontal - Boolean to differ between both layouts.
\"
function! s:switch_window_split(horizontal) abort
  let l:bufnr = bufnr(\'%\')  \" Get current buffer number to restore it in the new window.
  if a:horizontal | let l:vert = \'\' | else | let l:vert = \'vert \' | endif

  \" Close current window and open new split with the cached buffer number.
  wincmd c
  execute l:vert . \'sbuffer \' . l:bufnr
endfunction

\" Switch split layout.
nnoremap <leader>wS :<C-u>call <SID>switch_window_split(v:true)<CR>
nnoremap <leader>wV :<C-u>call <SID>switch_window_split(v:false)<CR>
不幸的是,它目前仍会更改窗口的大小,并且不会保持原来的形状。我正在研究它,但是实现起来并不容易,因为我必须知道“伙伴”窗口的形状。     

要回复问题请先登录注册