本文介绍了在 vim 拆分窗格之间导航的更简单方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 vim 上使用 NERDTree 并且通常使用 i

I am using NERDTree on vim and usually open files with i

有没有一种在不同窗格之间切换的简单方法?目前我使用 CTRL+W+W 从一个窗格移动到另一个窗格.

Is there an easy way to switch between different panes? Currently I use CTRL+W+W to move from one pane to another.

推荐答案

很久以前我发现了一个提示(曾经在 vim.org 上,现在在 wikia 上,显然)我一直坚持.重新映射 ctrl-[hjkl] 以导航拆分.它对我很有帮助.

Long ago I found a tip (once on vim.org, now on wikia, apparently) that I've stuck with. Remap ctrl-[hjkl] to navigate splits. It has served me well.

" Use ctrl-[hjkl] to select the active split!
nmap <silent> <c-k> :wincmd k<CR>
nmap <silent> <c-j> :wincmd j<CR>
nmap <silent> <c-h> :wincmd h<CR>
nmap <silent> <c-l> :wincmd l<CR>

这篇关于在 vim 拆分窗格之间导航的更简单方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 08:10