fixed: typo

pull/16/head
skywind3000 7 years ago
parent 685d507626
commit 842bbea732

@ -1,6 +1,6 @@
############################################################################## ##############################################################################
# VIM CHEATSHEET (中文速查表) - by skywind (created on 2017/10/12) # VIM CHEATSHEET (中文速查表) - by skywind (created on 2017/10/12)
# Version: 31, Last Modified: 2018/03/12 10:53 # Version: 32, Last Modified: 2018/03/15 10:50
# https://github.com/skywind3000/awesome-cheatsheets # https://github.com/skywind3000/awesome-cheatsheets
############################################################################## ##############################################################################
@ -682,7 +682,7 @@ reddit https://www.reddit.com/r/vim/
############################################################################## ##############################################################################
- 永远不要用 CTRL-C 代替 <ESC> 完全不同的含义,容易错误中断运行的后台脚本 - 永远不要用 CTRL-C 代替 <ESC> 完全不同的含义,容易错误中断运行的后台脚本
- 很多人使用 CTRL-[ 代替 <ESC>,左小指 CTRL右手小指 [ 熟练后很方便 - 很多人使用 CTRL-[ 代替 <ESC>,左小指 CTRL右手小指 [ 熟练后很方便
- SecureCRT 中使用 Vim 8 内嵌终端如看到奇怪字符,使用 :set t_RS= t_SH= 解决 - SecureCRT 中使用 Vim 8 内嵌终端如看到奇怪字符,使用 :set t_RS= t_SH= 解决
- SecureCRT 中使用 NeoVim 如看到奇怪字符,使用 :set guicursor= 解决 - SecureCRT 中使用 NeoVim 如看到奇怪字符,使用 :set guicursor= 解决
- * 和 # (以及 g*/g#)是十分重要的查找命令 - * 和 # (以及 g*/g#)是十分重要的查找命令

@ -676,6 +676,7 @@ echo $[RANDOM%X+1] # 取得 1 到 X 之间的随机数
bind -x '"\C-l":ls -l' # 设置 CTRL+l 为执行 ls -l 命令 bind -x '"\C-l":ls -l' # 设置 CTRL+l 为执行 ls -l 命令
find / -type f -size +5M # 查找大于 5M 的文件 find / -type f -size +5M # 查找大于 5M 的文件
chmod --reference f1 f2 # 将 f2 的权限设置成 f1 一模一样的 chmod --reference f1 f2 # 将 f2 的权限设置成 f1 一模一样的
curl -L cheat.sh # 速查表大全
############################################################################## ##############################################################################

Loading…
Cancel
Save