vscode快捷键
Ctrl + Shift + (左上角的
键) // 新建终端
cmd + k 然后按 cmd + j 展开代码
cmd + k 然后按cmd + 2 缩代码
cmd + p 快速查找文件
VS Code有哪些常用的快捷键?
mac Chrome快捷键
- command + option + c 快速开启浏览器控制台
- command + option + j 快速开启或关闭浏览器控制台
- 在控制台下按esc,点击左边的三个点,可以调整动画时间
- sublime/Chrome command + '+' 能放大缩小
- command + 1 2 3 切换浏览器页签
- command + t 打开浏览器新页签,且可输入
webstrom快捷键&操作
command + -> 光标定位到本行最后
command + / 单行注释
command + shift + / 多行注释
command + shift + '+' 展开代码,相应的 '-',缩减代码
command + option + L 格式化代码
command + x 不用选择,直接删除当行
item.log => console.log(item)
-
command + 鼠标点击 定位一个方法在哪个文件里面有引用
下图可以看出只在一个文件中有引用,但是你全局搜索GetList就会有很多很多结果。
shift + enter 不管在什么位置,直接跳到下一行
div#loading.loading id为loading,class为loading
webstrom是可以按ctrl,多选文件,然后拖动的到某个文件夹里面的
command + shift + up/down 上下移动句子
command + d 复制当前行,然后黏贴在下面
Paste粘贴板
- 记录粘贴板历史 当出现后自动按 command + 数字 自动会黏贴在当前光标对应处
oh my zsl alias 配置
➜ ~ vi .zshrc
➜ ~ source .zshrc
ga .
gc
gp
alias ga="git add"
alias gc="git commit"
alias gp="git push"
alias gco="git checkout"
➜ ~ where ga
ga: aliased to git add
jsbin 快捷键
格式化代码: command + shift + l
w => width;
h => height
bg => background;
d:ib => display: inline-block;
ta:j => text-align: justify
text-align: [əˈlaɪn] 不是align
br: 10px; border-right: 10px;
po:a => position: absolute;
l0 left: 0;
r0 right: 0;
t0 top: 0;
b0 bottom: 0;
html => <!DOCTYPE html>
div[id=item}* 6
<div id="item1">选项1</div>
<div id="item2">选项2</div>
<div id="item3">选项3</div>
<div id="item4">选项4</div>
<div id="item5">选项5</div>
<div id="item6">选项6</div>
ul>li[id=item} * 6
<ul>
<li id="item1">选项1</li>
<li id="item2">选项2</li>
<li id="item3">选项3</li>
<li id="item4">选项4</li>
<li id="item5">选项5</li>
<li id="item6">选项6</li>
</ul>
button#p张} * 3
<button id="p1">第1张</button>
<button id="p2">第2张</button>
<button id="p3">第3张</button>
ul>li.nav{导航$}*5
<ul class=navs>
<li class="nav">导航1</li>
<li class="nav">导航2</li>
<li class="nav">导航3</li>
<li class="nav">导航4</li>
<li class="nav">导航5</li>
</ul>