You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ctrl-shift-3 launch live server on port 3000.
ctrl-shift-4 launch live server on port 4000.
ctrl-shift-5 launch live server on port 5000.
ctrl-shift-8 launch live server on port 8000.
ctrl-shift-9 launch live server on port 9000.
一、实用用法
View -> Panes -> Split Xxx
二、快捷键
1、快速查找文件:
cmd + p
.a: 输入文件名搜索.
b: 输入目录 + 文件名搜索.
2、切换多个页签窗口.
使用
cmd + [1,2,3...]
切换到第几个页签.如:
cmd + 3
切到第三个窗口.3、新建空文件:
cmd + n
4、选择同名标签, 批改标签名字
选择其中一个标签, 然后
cmd + d
会高亮下一个该名的标签.拓展:批改某个标签名, cmd + d选中多个同名标签后, 直接批改名字.
5、选中某行:
cmd + l
6、查找关键字
a、
cmd + f
查找该文件下的该关键字.b、
cmd + shift + f
查找所有文件下的该关键字.7、选中{ }中括号内所有, 用于CSS中某个样式集的选定
cmd + ctrl + m
三、推荐安装套件
0、react插件
开发react/react native必备插件
1、文件图标:
file-icons
根据不同文件后缀名显示不同类型图标
2、支持
html
和css
格式文件中代码速写插件:emmet
用法介绍:.
a、新建空文件后,改变文本格式为html(点击atom最右下角显示的文本格式来改变),然后在文本空白处输入标签名
html
、head
、div
、article
、a
...后按tab
键.b、多倍数个的同类标签:
li*3
c、快速设置
class/id
属性默认的div标签:.clsName
/idName
然后tab
会出来class/id
为clsName/idName
的div
标签d、快速设置
class/id
属性的任意标签: 如h1.title
/h1#title
出来id/class
为title
的h1
标签e、
>
嵌套符来速写嵌套关系的标签:ul>li*3>a
f、
{}
设置标签内value值:如ul>li{value1}+li{value2}
新建空文件后,改变文本格式为css(点击atom最右下角显示的文本格式来改变), 只需书写属性和值的第一个缩写字母+值
更多缩写用法请查看emmet官网
3、webserver服务器插件:
atom-live-server
用法介绍:.
更多参考atom-live-server官网
4、linter-eslint代码错误提示插件
需要配合
.eslintrc
相应的规则插件进行使用5、点击跳转
需要下载
hyperclick
和js-hyperclick
, 就可以通过引用跳转到需要类和方法.The text was updated successfully, but these errors were encountered: