Vim Editor
Английский (command) ->
Английский (key)
Всего: 56
Показано записей: 50
Всего страниц: 2
Страница: 1
| # | Слово | Перевод |
|---|---|---|
| 1 | quit | :q |
| 2 | write | :w |
| 3 | move word backward | b |
| 4 | move word forward | w |
| 5 | quit forced | :q! |
| 6 | write and quit | :wq, :x, ZZ |
| 7 | undo | u |
| 8 | redo undo | Ctrl + r |
| 9 | next occurrence | n |
| 10 | previous occurrence | N |
| 11 | move to start of line | 0, ^ |
| 12 | move to end of line | $ |
| 13 | forward one screen | Ctrl + f |
| 14 | half screen down | Ctrl + d |
| 15 | append | a |
| 16 | insert | i |
| 17 | move screen up | Ctrl + u |
| 18 | move line down | Ctrl + y |
| 19 | move line up | Ctrl + e |
| 20 | append to end of line | A |
| 21 | move left | h |
| 22 | move right | l |
| 23 | move down | j |
| 24 | move up | k |
| 25 | move to end | e |
| 26 | high, move on top | H |
| 27 | move to middle of screen | M |
| 28 | low, move to bottom of screen | L |
| 29 | yank | yy, Y |
| 30 | put below | p |
| 31 | put above | P |
| 32 | change word | cw |
| 33 | move screen backward | Ctrl + b |
| 34 | start writing macro x | qx |
| 35 | stop writing macro | q |
| 36 | run macro x | @x |
| 37 | bookmark the line x | mx |
| 38 | go to bookmark x | 'x |
| 39 | open line | o |
| 40 | open line above | O |
| 41 | change the line | cc |
| 42 | move to start of file | gg |
| 43 | move to end of file | G |
| 44 | move to line 2 | 2G |
| 45 | list buffers | :ls |
| 46 | next buffer | Ctrl + ^ |
| 47 | change register | ~ |
| 48 | switch to normal mode | esc, Ctrl + [ |
| 49 | replace character | r |
| 50 | find character x in current line | fx |