diff --git a/editors/vim.txt b/editors/vim.txt index 0a4e30a..80a2a2d 100644 --- a/editors/vim.txt +++ b/editors/vim.txt @@ -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