How to open the terminal in Atom?

How to open the terminal in Atom? Do I need to install a plug-in?

If possible, I also would like to know how to use shortcut keys to open the terminal.

247751 次浏览

编辑: 我不再使用 Atom。我最初在这里推荐的插件显然都已停止维护。我已经在评论中更新了这个答案的建议,但是请注意,我还没有尝试这些建议中的任何一个,也不会再维护这个答案。

请检查评论或其他答案,以获得更多最新的建议。


有许多 Atom 包可以让您从 Atom 内部访问终端。尝试一些为你找到最好的选择。

Open a terminal 进去 Atom:

如果要打开终端面板 进去 Atom,请尝试 platformio-ide-terminal。使用快捷键 ctrl-`打开一个新的终端实例。

打开外部终端 from原子:

如果您只是想要一个从 Atom 内部打开外部终端的快捷方式,请尝试 open-terminal-here。您可以使用 ctrl-alt-t打开当前文件目录中的外部终端,或者使用 ctrl-alt-shift-t打开项目根目录中的终端。

Atom IDE:

  1. 打开文件 > 设置
  2. 点击“ +”(安装)
  3. 搜索一个名为“ platformio-ide-Terminal”的终端包
  4. 点击“安装”。
  5. Crtl + `来切换终端

对于 Windows,请遵循以下步骤

(1)进入文件 > 设置,点击安装 enter image description here

(2)在软件包中输入“ platformio-ide-Terminal”,然后点击安装 enter image description here (3)安装完毕后重新启动原子按压

 ctrl + ~ for opening the terminal `~` is the key below `Esc`

enter image description here

欢迎; -)

首先,安装“ platformio-ide-Terminal”: 打开 "Preferences ⌘," > > 单击 “ + 安装” > > 在 “搜索包”中键入 “平台终端” > > 单击 “安装”

And 正好回答了这个问题。 If you have previously installed, just use:

  • Shortcut: ctrl-` or Option+Command+T (⌥⌘T)
  • 按菜单: 进入软件包 > platformio-ide-Terminal [或其他] > New Terminal

Atom 目前没有一个内置的终端(据我所知) ,所以您必须安装一个额外的软件包,比如 platformio-ide-terminal

下面的截图是在 Mac 上拍摄的。

  1. 单击 亚当并选择首选项

    enter image description here

  2. 在出现的“设置”选项卡中,单击“添加”图标 +以安装新包

    enter image description here

  3. A search bar will appear. Most packages should have the feature you desire in their name, so you can begin to type those keywords to see suggestions. In this case if you already know the name, just enter it there

    enter image description here

  4. 点击安装
  1. 打开 Atom IDE
  2. 按下 ctrl + shift + P 并搜索“ platformio-ide-Terminal”软件包
  3. 按安装
  4. 安装后按 ctrl + ~ (标准键盘标签键上方的波浪线)
  5. 终端打开享受! ! !

现在版本的 Mac Catalina

  1. 进入软件包选项卡—— > 设置视图——-> 安装软件包/主题——-> + 安装按钮—— > 添加“ platformio-ide-Terminal”

  2. 控制到终端

我不想仅仅为了这个目的安装一个软件包,所以我最终在我的 init.coffee中使用了这个软件包:

spawn = require('child_process').spawn
atom.commands.add 'atom-text-editor', 'open-terminal', ->
file = atom.workspace.getActiveTextEditor().getPath()
dir = atom.project.getDirectoryForProjectPath(file).path
spawn 'mate-terminal', ["--working-directory=#{dir}"], {
detached: true
}

这样,我就可以把 ctrl-shift-t映射到 open-terminal命令,它就会打开一个伴侣终端。

如果你最终在2022年想知道在最新的 Mac OS 上你应该为 Atom 做些什么,请遵循以下步骤:

  1. 安装: enter image description here

  2. 用法: 一旦安装好,为了打开终端按 ctr +’