我想这样,从最右边的窗口键入Ctrl-Wk会将最左边的窗口聚焦在VIM中.显然,在各个方向上工作都很方便.
我的主要动机是与NERDTree一起使用.我通常有以下设置:
|----------|----------|-----------| | | | | | NERDTree | File1 | File2 | | | | | | |----------|-----------| | | | | | | File3 | File4 | | | | | |----------|----------|-----------|
如果我想在与File4相同的窗口中打开一个新文件,我现在必须输入2Ctrl-Wj,用Ctrl-Wk实现相同的结果会很不错.
谢谢.
您必须使用包含此额外逻辑的自己的映射来覆盖$HOME / .vimrc中的默认命令.当正常移动不再改变窗口时(即我们已经在边界处),跳到另一边.
原文链接:https://www.f2er.com/bash/384973.html" " Wrap window-move-cursor " function! s:GotoNextWindow( direction,count ) let l:prevWinNr = winnr() execute a:count . 'wincmd' a:direction return winnr() != l:prevWinNr endfunction function! s:JumpWithWrap( direction,opposite ) if ! s:GotoNextWindow(a:direction,v:count1) call s:GotoNextWindow(a:opposite,999) endif endfunction nnoremap <silent> <C-w>h :<C-u>call <SID>JumpWithWrap('h','l')<CR> nnoremap <silent> <C-w>j :<C-u>call <SID>JumpWithWrap('j','k')<CR> nnoremap <silent> <C-w>k :<C-u>call <SID>JumpWithWrap('k','j')<CR> nnoremap <silent> <C-w>l :<C-u>call <SID>JumpWithWrap('l','h')<CR> nnoremap <silent> <C-w><Left> :<C-u>call <SID>JumpWithWrap('h','l')<CR> nnoremap <silent> <C-w><Down> :<C-u>call <SID>JumpWithWrap('j','k')<CR> nnoremap <silent> <C-w><Up> :<C-u>call <SID>JumpWithWrap('k','j')<CR> nnoremap <silent> <C-w><Right> :<C-u>call <SID>JumpWithWrap('l','h')<CR>