标签:ctr test 多行注释 匹配 字符串替换 转义 class 模式 pre
vim文件路径自动补全
Ctrl+x -> Ctrl+f
vim多行注释
Ctrl+v 进入块操作 -> 下光标选择行 -> shift+i 大写I 行首插入模式 -> 插入注释字符比如# 或 // ,只需要在需要注释行的第一行插入注释字符 -> Esc -> Esc
vim字符串替换 :%s/old字符串/new字符串/g ##替换所有 :s/old字符串/new字符串/ ##替换当前行第一个匹配的字符串 :s/old字符串/new字符串/g ##替换当前行所有匹配的字符串 :n,m s/old字符串/new字符串/g ##替换n到m行的所有匹配字符串 ##替换单词,比如this is a test!,需要替换后面的is单词,而不替换this中的is,那么使用<>,需要使用\转义: :%s/\<is\>/are/g
标签:ctr test 多行注释 匹配 字符串替换 转义 class 模式 pre
原文地址:http://www.cnblogs.com/g120992880/p/6845587.html