H
:Home
,move to top of screenM
:Middle
,move to middle of screenL
:Low
,move to bottom of screen0
:jump to the start of the line}
:jump to next paragraph (or function/block, when editing code){
:jump to previous paragraph (or function/block, when editing code)ea
:insert (append) at the end of the wordCtrl + h
:delete the character before the cursor during insert modeCtrl + w
:delete the word before the cursor during insert modeCtrl + j
:begin new line during insert modeCtrl + t
:indent(move right) line one shiftwidth during insert modeCtrl + d
:de-indent(move left) line one shiftwidth during insert modeCtrl + n
:insert(auto-complete) next match before the cursor during insert modeCtrl + p
:insert(auto-complete) previous match before the cursor during insert modeCtrl + rx
:insert the contents of register xCtrl + ox
:Temporarily enter normal mode to issue one normal-mode command x.r
:Replace
,replace a single character.R
:Replace Mode
,replace more than one character, until ESC is pressed.J
:Join
,join line below to the current one with one space in between.gJ
:join line below to the current one without space in between.gwip
:reflow paragraph.xp
:Transpose
,transpose two letters(delete and paste).u
:undo.U
:Undo Line
,restore (undo) last change line.v
:start visual mode, mark lines, then do a command (like y-yank)V
:start linewise visual mode.o
:move to other end of marked area.Ctrl + v
:start visual block mode
.O
:move to other corner of block.aw
:mark a word.ab
:a block with ().aB
:a block with {}.at
:a block with <> tags.ib
:inner block with ().iB
:inner block with {}.it
:inner block with <> tags.>
:shift text right<
:shift text lefty
:yank (copy) marked textd
:delete marked text~
:switch caseu
:change marked text to lowercaseU
:change marked text to uppercase~/.viminfo
, and will be loaded again on next restart of vim.0
:last yank"
:unnamed register, last delete or yank%
: current file name#
: alternate file name*
:clipboard contents (X11 primary)+
:clipboard contents (X11 clipboard)/
:last search pattern:
:last command-line.
:last inserted text-
:last small (less than a line) delete=
:expression register_
:black hole register:marks
:list of marks
ma
:set current position for mark A`a
:jump to position of mark Ay`a
:yank text to position of mark A`0
:go to the position where Vim was previously exited`"
:go to the position when last editing this file`.
:go to the position of last editing this file ` `
:go to the position before the last last jump:ju[mps]
:list of jumps
Ctrl + i
:go to newer position in jump list
Ctrl + o
:go to older position in jump list
:changes
:list of changes
g
:go to newer position in change listg;
:go to older position in change listCtrl + ]
:jump to the tag under cursor
Ctrl + ]
to jump to the definition of that identifier`
) or an apostrophe ('
). Using an apostrophe jumps to the beginning (first non-blank) of the line holding the mark.qa
:record macro aq
:stop recording macro@a
:run macro a@@
:rerun last run macrop
:put (paste) the clipboard after cursorP
:put (paste) before cursorgp
:put (paste) the clipboard after cursor and leave cursor after the new textgP
:put (paste) the clipboard before cursor and leave cursor after the new textd$ or D
:delete (cut) to the end of the line>>
:indent (move right) line one shiftwidth<<
:de-indent (move left) line one shiftwidth>%
:indent a block with () or {} (cursor on brace) line one shiftwidth>ib
:indent inner block with ()>at
:indent a block with <> tags3==
:re-indent 3 lines=%
:re-indent a block with () or {} (cursor on brace)=iB
:re-indent inner block with {}gg=G
:re-indent entire buffer]p
:paste and adjust indent to current line:wqa
:write (save) and quit on all tab@pattern
:‘very magic’ pattern: non-alphanumeric characters are interpreted as special regex symbols (no escaping needed):noh[lsearch]
:remove highlighting of search matchesza
:toggle fold under the cursorzo
:open fold under the cursorzc
:close fold under the cursorzr
:reduce (open) all folds by one levelzm
:fold more (close) all folds by one levelzi
:toggle folding functionality]c
:jump to start of next change[c
:jump to start of previous change
提示:请勿发布广告垃圾评论,否则封号处理!!