> For the complete documentation index, see [llms.txt](https://vincentcc.gitbook.io/jrebel/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vincentcc.gitbook.io/jrebel/chapter2/atom-shi-yong.md).

# Atom 使用

1. 安装设置

   [Atom官网](https://atom.io)\
   [Atom-setup for Windows\_x64](https://atom.io/download/windows_x64)
2. Atom常用插件
   * [minimap](https://atom.io/packages/minimap)\
     minimap是一个预览全部代码的一个插件，同时能方便的移动到指定的文件位置。
   * [markdown-pdf](https://atom.io/packages/markdown-pdf) markdown 换 pdf 的插件
   * [git-plus](https://atom.io/packages/git-plus)\
     git 插件
3. Atom 插件安装

```
  File -> settings -> install
```

![安装插件](/files/-L_37HCB8eBS97YhL4_N)

1. Atom 常用快捷键

```
Crtl+Shift+M    开启Markdown实时预览
Command+Shift+P    打开命令窗口，可以运行各种菜单功能
Command + T    快速多文件切换
Command + F    文件内查找和替换
Command + Shift + F    多文件查找和替换
Command + [    对选中内容向左缩进
Command + ]    对选中内容向右缩进
Command + \    显示或隐藏目录树
Crtl + m    相应括号之间，html tag之间等跳转
Crtl + Alt + B    格式化代码（需要安装atom-beautify）
Crtl + `    调起CLI命令行界面（需要安装terminal-panel
```
