测试webhook

This commit is contained in:
结发受长生 2019-03-31 12:28:35 +08:00
parent 638182a237
commit 2048a69ee3
2 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,7 @@ map <F3> i<html><CR><body></body><CR></html>
行操作
+ `0` 或者 `^` - 移动至行首(如果行首有缩进, 0会将光标置于缩进之前, ^会将光标置于缩进之后)
+ `$` - 移动至行尾
^和$与正则表达式中表示字符串的开头与末尾是一致的
## 跳转

View File

@ -53,6 +53,7 @@ flags是替换方式的标识
+ `g` global 在当前指定的范围内全局替换
+ `i` ignore case 忽略大小写
例如
+ **s/str1/str2/g** - 将当前行中的str1替换为str2
+ **%s/str1/str2/g** - 将整篇文档所有的str1替换为str2