vim
articles about vim
问题不大的
礼多人不怪
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vim 常用命令
:close - close a window:only - close all other windows:split otherFile.txt - split a window on another file:vsplit - vertical separator:new - open a window on a new ,empty file:vnew - split the window vertiacally instead of horizontallyctrl+...原创 2021-09-03 15:48:36 · 221 阅读 · 0 评论 -
vim 翻页
ctrl+f(forward) 往前翻一页ctrl+b(backward) 往后翻一页ctrl+d(down) 往前翻半页ctrl+u(up) 往后翻半页zz 让光标所在行居屏幕中央zt 让光标所在行居屏幕最上一行 t=topzb 让光标所在行居屏幕最下一行 b=bottom...原创 2019-07-04 17:42:54 · 34500 阅读 · 0 评论 -
vim replace
1.replace a word:%s/oldWord/newWord/g e.g.: replace all oldWord with newWord%表示所有行g 表示到行尾:%s/oldWord/newWord/gc每个word替换之前需要人工确认2.change "Last, First" to "First Last":%s/\([^,]*\), \(....原创 2020-01-17 15:10:46 · 3375 阅读 · 0 评论 -
chrome vim plugin - Vimium
Navigating the page:1. j k l hscroll down/up/left/right2. d uscroll a half page down/up3.gg Gscroll to the top/bottom of the page4. rreload the page5.yycopy the current url to the ...原创 2019-08-26 09:38:15 · 438 阅读 · 0 评论