码迷,mamicode.com
首页 > 系统相关 > 详细

vim

时间:2017-05-12 15:35:44      阅读:300      评论:0      收藏:0      [点我收藏+]

标签: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  

 

vim

标签:ctr   test   多行注释   匹配   字符串替换   转义   class   模式   pre   

原文地址:http://www.cnblogs.com/g120992880/p/6845587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!