Tryb wstawiania
Ruch
hjkl
Niezależnie od tego, co powiedział Pavel Shved - że prawdopodobnie lepiej jest przyzwyczaić się do Escapingowania trybu Insert - oto przykładowy zestaw map do szybkiej nawigacji w trybie Insert:
" provide hjkl movements in Insert mode via the <Alt> modifier key
inoremap <A-h> <C-o>h
inoremap <A-j> <C-o>j
inoremap <A-k> <C-o>k
inoremap <A-l> <C-o>l
Spowoduje to, że Alt+ hw trybie wstawiania przejdzie o jeden znak w lewo, Alt+ w jdół itd., Analogicznie jak hjklw trybie normalnym.
Musisz skopiować ten kod do pliku vimrc, aby był ładowany przy każdym uruchomieniu vim (możesz go otworzyć, pisząc :new $myvimrc
zaczynając w trybie normalnym).
Wszelkie ruchy w trybie normalnym
Ponieważ Altklawisz modyfikujący nie jest domyślnie odwzorowany (na coś ważnego), możesz w ten sam sposób przeciągnąć inne (lub wszystkie) funkcje z trybu normalnego do trybu wstawiania. Np .:
Przejście na początek bieżącego słowa za pomocą Alt+ b:
inoremap <A-b> <C-o>b
inoremap <A-w> <C-o>w
(Inne zastosowania Altw trybie wstawiania)
Warto wspomnieć, że użycie Altklucza może być lepsze niż replikacja zachowania w trybie normalnym: np. Oto mapowania do kopiowania z sąsiedniej linii części z bieżącej kolumny do końca linii:
" Insert the rest of the line below the cursor.
" Mnemonic: Elevate characters from below line
inoremap <A-e>
\<Esc>
\jl
\y$
\hk
\p
\a
" Insert the rest of the line above the cursor.
" Mnemonic: Y depicts a funnel, through which the above line's characters pour onto the current line.
inoremap <A-y>
\<Esc>
\kl
\y$
\hj
\p
\a
(Użyłem \
kontynuacji linii i wcięcia w celu zwiększenia przejrzystości - polecenia są interpretowane tak, jakby były zapisane w jednym wierszu).
Wbudowane klawisze skrótów do edycji
CTRL-H delete the character in front of the cursor (same as <Backspace>)
CTRL-W delete the word in front of the cursor
CTRL-U delete all characters in front of the cursor (influenced by the 'backspace' option)
(Nie ma żadnych wbudowanych skrótów klawiszowych do poruszania się w trybie wstawiania).
Odniesienie: :help insert-index
Tryb wiersza poleceń
Ten zbiór odwzorowań sprawia górne Alt+ hjkl ruchy dostępne w linii poleceń:
" provide hjkl movements in Command-line mode via the <Alt> modifier key
cnoremap <A-h> <Left>
cnoremap <A-j> <Down>
cnoremap <A-k> <Up>
cnoremap <A-l> <Right>
Alternatywnie, te mapowania dodają ruchy zarówno do trybu Wstawiania, jak i trybu wiersza poleceń za jednym razem:
" provide hjkl movements in Insert mode and Command-line mode via the <Alt> modifier key
noremap! <A-h> <Left>
noremap! <A-j> <Down>
noremap! <A-k> <Up>
noremap! <A-l> <Right>
Polecenia odwzorowywania służące do wyciągania poleceń trybu normalnego do trybu wiersza polecenia wyglądają nieco inaczej niż polecenia odwzorowywania w trybie wstawiania (ponieważ w trybie wiersza poleceń brakuje trybu wstawiania Ctrl+ O):
" Normal mode command(s) go… --v <-- here
cnoremap <expr> <A-h> &cedit. 'h' .'<C-c>'
cnoremap <expr> <A-j> &cedit. 'j' .'<C-c>'
cnoremap <expr> <A-k> &cedit. 'k' .'<C-c>'
cnoremap <expr> <A-l> &cedit. 'l' .'<C-c>'
cnoremap <expr> <A-b> &cedit. 'b' .'<C-c>'
cnoremap <expr> <A-w> &cedit. 'w' .'<C-c>'
Wbudowane klawisze skrótów do przenoszenia i edycji
CTRL-B cursor to beginning of command-line
CTRL-E cursor to end of command-line
CTRL-F opens the command-line window (unless a different key is specified in 'cedit')
CTRL-H delete the character in front of the cursor (same as <Backspace>)
CTRL-W delete the word in front of the cursor
CTRL-U delete all characters in front of the cursor
CTRL-P recall previous command-line from history (that matches pattern in front of the cursor)
CTRL-N recall next command-line from history (that matches pattern in front of the cursor)
<Up> recall previous command-line from history (that matches pattern in front of the cursor)
<Down> recall next command-line from history (that matches pattern in front of the cursor)
<S-Up> recall previous command-line from history
<S-Down> recall next command-line from history
<PageUp> recall previous command-line from history
<PageDown> recall next command-line from history
<S-Left> cursor one word left
<C-Left> cursor one word left
<S-Right> cursor one word right
<C-Right> cursor one word right
<LeftMouse> cursor at mouse click
Odniesienie: :help ex-edit-index
imap jk <Esc>
), Abyś nie musiał łamać tempa i sięgać po klawiaturze, aby nacisnąć klawisz.