From 842bbea732f60cd830bf3b1ef2e2e5d41ce32620 Mon Sep 17 00:00:00 2001 From: skywind3000 Date: Thu, 15 Mar 2018 11:04:46 +0800 Subject: [PATCH] fixed: typo --- editors/vim.txt | 4 ++-- languages/bash.sh | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/editors/vim.txt b/editors/vim.txt index 3af6c4b..827cd1a 100644 --- a/editors/vim.txt +++ b/editors/vim.txt @@ -1,6 +1,6 @@ ############################################################################## # 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 ############################################################################## @@ -682,7 +682,7 @@ reddit https://www.reddit.com/r/vim/ ############################################################################## - 永远不要用 CTRL-C 代替 完全不同的含义,容易错误中断运行的后台脚本 -- 很多人使用 CTRL-[ 代替 ,左右小指 CTRL,右手小指 [ 熟练后很方便 +- 很多人使用 CTRL-[ 代替 ,左手小指 CTRL,右手小指 [ 熟练后很方便 - SecureCRT 中使用 Vim 8 内嵌终端如看到奇怪字符,使用 :set t_RS= t_SH= 解决 - SecureCRT 中使用 NeoVim 如看到奇怪字符,使用 :set guicursor= 解决 - * 和 # (以及 g*/g#)是十分重要的查找命令 diff --git a/languages/bash.sh b/languages/bash.sh index ccfc442..ebc80b7 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -676,6 +676,7 @@ echo $[RANDOM%X+1] # 取得 1 到 X 之间的随机数 bind -x '"\C-l":ls -l' # 设置 CTRL+l 为执行 ls -l 命令 find / -type f -size +5M # 查找大于 5M 的文件 chmod --reference f1 f2 # 将 f2 的权限设置成 f1 一模一样的 +curl -L cheat.sh # 速查表大全 ##############################################################################