我很長一段時間學習Vim的emacs用戶。使用Emacs,我可以使用與任何其他緩衝區中相同的導航鍵盤快捷方式在迷你緩衝區(我在其中發出類似C-x C-s的命令)中導航。例如,即使在迷你緩衝區中,我也可以使用C-f向前導航一個字符。我也可以使用箭頭鍵,但它們太遙遠了。在Vim的命令模式下導航
是否有任何鍵盤快捷鍵在Vim的命令模式(:)下導航,而無需使用箭頭鍵 - 相當於emacs C-f,C-b?謝謝。
我很長一段時間學習Vim的emacs用戶。使用Emacs,我可以使用與任何其他緩衝區中相同的導航鍵盤快捷方式在迷你緩衝區(我在其中發出類似C-x C-s的命令)中導航。例如,即使在迷你緩衝區中,我也可以使用C-f向前導航一個字符。我也可以使用箭頭鍵,但它們太遙遠了。在Vim的命令模式下導航
是否有任何鍵盤快捷鍵在Vim的命令模式(:)下導航,而無需使用箭頭鍵 - 相當於emacs C-f,C-b?謝謝。
使用默認的鍵綁定,vim不提供命令行編輯的非箭頭鍵導航。但有關如何使用:cnoremap
命令設置備用密鑰綁定的示例,請參閱:help cmdline-editing
。
一些從Vim的幫助:
CTRL-B or <Home>
cursor to beginning of command-line
CTRL-E or <End>
cursor to end of command-line
CTRL-H
<BS> Delete the character in front of the cursor (see |:fixdel| if
your <BS> key does not do what you want).
<Del> Delete the character under the cursor (at end of line:
character before the cursor).
CTRL-W Delete the |word| before the cursor. This depends on the
'iskeyword' option.
CTRL-U Remove all characters between the cursor position and
the beginning of the line.
正是我在找,謝謝Jeet! –
我有這些在我的.vimrc
cnoremap <C-a> <Home>
cnoremap <C-e> <End>
cnoremap <C-p> <Up>
cnoremap <C-n> <Down>
cnoremap <C-b> <Left>
cnoremap <C-f> <Right>
cnoremap <M-b> <S-Left>
cnoremap <M-f> <S-Right>
這讓我如此開心。對於具有綁定''問題的用戶,請參閱http://stackoverflow.com/a/27206531/1213041 – cdosborn
可能重複[如何在Vim命令行中移動?](http://stackoverflow.com/questions/2075569/how-can-i-move-around-in-the-vim-command-線) –