K - open man page for word under the cursor Tip Run vimtutor in a terminal to learn the first Vim commands. Cursor movement h - move cursor left j - move cursor down k - move cursor up l - move cursor right H - move to top of screen M - move to middle of screen L - move ...
zl move the view on text to right for 1 character(如果设置了nowrap,并且文本行超出屏幕) z. 将光标所在行移动到屏幕中间(scroll the line with the cursor to the center of the screen) zt top 将光标所在行移动到屏幕顶端(scroll the line with the cursor to the top) z<Enter> 将光标所在行移动...
'}': 'vim-mode-plus:move-to-next-paragraph' '{': 'vim-mode-plus:move-to-previous-paragraph' 'G': 'vim-mode-plus:move-to-last-line' 'g g': 'vim-mode-plus:move-to-first-line' 'H': 'vim-mode-plus:move-to-top-of-screen' 'L': 'vim-mode-plus:move-to-bottom-of-screen' '...
h#move cursor leftj#move cursor downk#move cursor upl#move cursor rightH#move to top of screenM#move to middle of screenL#move to bottom of screenw#jump forwards to the start of a wordW#jump forwards to the start of a word (words can contain punctuation)e#jump forwards to the end...
Ctrl + y– move screen up one line (without moving the cursor) Ctrl + o– move backward through the jump history Ctrl + i– move forward through the jump history H– move to the top of the screen (H=high) M– move to the middle of the screen (M=middle) ...
|H| cursor to line N from top of screen |I| insert text before the first CHAR on the line N times |J| Join N lines; default is 2 |L| cursor to line N from bottom of screen |M| cursor to middle line of screen |N| repeat the latest '/' or '?' N times in opposite...
|g_| g_ 1 cursor to the last CHAR N - 1 lines lower |g#| g# 1 like "#", but without using "\<" and "\>" of the current screen line |gstar| g* 1 like "*", but without using "\<" and "\>" |gn| gn 1,2 find the next match with the last used ...
These are the big Vim features, put generally in the order in which we plan to implement them. Now follows an exhaustive list of every known Vim command that we could find. 3|0Custom commands gh- show the hover tooltip. gb- add an additional cursor at the next place that matches*. ...
同 <Right> 键 Ctrl+e # 向上滚动一行 Ctrl+y # 向下滚动一行 Ctrl+u # 向上滚动半屏 --> move up 1/2 a screen Ctrl+d # 向下滚动半屏 --> move down 1/2 a screen Ctrl+f # 向下滚动一屏 --> move forward one full screen Ctrl+b # 向上滚动一屏 --> move back one full screen 0 ...
Use0for navigating to the beginning of a line and$for moving to the end. PressingHgets the cursor to the top of the screen,Mto the middle, andLto the bottom. You can scroll up and down usingCtrl+uandCtrl+d. If you pressggin normal mode, vim will move the cursor to the top. Ent...