s4s 会删除4个字符,进入输入模式 (delete 4 char and put in insert mode) ~ -> 更改大小写,大变小,小变大 (change case upper-> lower or lower->upper) gu -> 变成小写 (change to lower case) 例如guG 会把光标当前到文件结尾全部变成小写 (change lower case all the way to the end) gU ->...
(如::delete/:substitute/:normal)的缺省范围是当前行(缺省范围:.) {pattern} {pattern}域与查找历史相互关联,如果查域为空的话,vim自动使用上一次的查找模式 [cmd] [cmd]可以是除了:global命令之外的任何Ex命令,[cmd]的范围可单独设定。缺省情况下,[cmd]=:print global命令执行情况 global命令在指定[ra...
ct( # 改写到小括号前 dd # 删除(剪切)当前行,当前行会存到寄存器里(d: delete = cut) dd[N]p # 删除(剪切)当前行并加入 N-1 个当前行,复制空行时很有用 d0 # 删除(剪切)到行首 d^ # 删除(剪切)到行首非零字符 d$ # 删除(剪切)到行末 D # 删除(剪切)到行末,等价于 d$ dw # 删除(剪...
:h ——vimhelp :bd ——bufferdelete:删除缓冲区,关闭帮助内容 :h bd ——查看关于bd的解释文档 bdhelp 在help文档里面,当光标移动到链接(如tutor)的地点时,用ctrl+右方括号 打开链接;用ctrl+o关闭链接。 vimtutor ——bash命令,vim教程 粘贴和复制: shift+v ——选中光标所在行 按j、k选中多行 d ——...
1. Move the cursor to the line below marked--->. 2. To fix the errors, move the cursoruntilit is ontopof the character to be deleted. 3. Press the x key to delete the unwanted character. 4. Repeat steps2through4untilthe sentence is correct. ...
syntax/c.vim unlet b:current_syntaxendif" C++ extentionssyn keyword cppSTL syn keyword cppStatement new delete this friend usingsyn keyword cppAccess public protected privatesyn keyword cppType inline virtual explicit export bool wchar_tsyn keyword cppExceptions throw try catchsyn keyword cppOpe...
dt delete to (" 删除引号 括号之间的字符 4x 删除4个字符 Vim快速修改 r replace 替换一个字符 c change cw(change word) 修改整个单词 s substitute 替换后进入插入字符 Vim查询 使用/或者?进行前向或者反向搜索 使用n/N 跳转下一个或者上一个匹配 ...
l:n endfor endif call delete(s:ranger_tmpfile) endif endfunction function! te#terminal#start_ranger() abort if te#env#Executable('ranger') let s:ranger_tmpfile = tempname() let l:cmd = 'ranger --choosefiles="' . s:ranger_tmpfile . '"' call te#terminal#shell_pop({'opener':0x...
Ctrl - E End of line Ctrl - K Delete to end of line Ctrl - F Move forward Ctrl - B ...
Type d$ to delete to the end of the line. 键入d$ 以删除光标到行尾间处的字符 Press <ESC> to make sure you are in Normal mode. 按下<ESC> 以确保你处于正常模式。 Move the cursor to the line below marked --->. 移动光标到以下以--->标记的行。