Merge pull request #85 from MLZC/vim_update

添加vim从第一行替换到当前行的语句
pull/88/head
Linwei 3 years ago committed by GitHub
commit 5f4f62844e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -291,6 +291,7 @@ N 向相反方向执行上一次搜索
:., ns/p1/p2/g 将当前行到n行中所有p1替换为p2
:., +10s/p1/p2/g 将当前行到相对当前行加10行的区间中所有p1替换为p2
:., $s/p1/p2/g 将当前行到最后一行中所有p1替换为p2
:0,.s/p1/p2/g 将第一行到当前行中所有p1替换为p2
:%s/1\\2\/3/123/g 将“1\2/3” 替换为 “123”特殊字符使用反斜杠标注
:%s/\r//g 删除 DOS 换行符 ^M

Loading…
Cancel
Save