Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 824
suwu150 Avatar asked Mar 25 '17 06:03

suwu150


5 Answers

In the Atom IDE:

  1. Open file>settings
  2. Click "+" (install)
  3. Search for a terminal package called "platformio-ide-terminal"
  4. Click "install".
  5. Press Crtl+` to toggle the terminal
like image 111
Bert Bristow Avatar answered Oct 11 '22 19:10

Bert Bristow


For Windows follow the below steps

(1)go to file>setting and click on install enter image description here

(2) then type "platformio-ide-terminal" in packages and hit install enter image description here (3) after finish install restart atom and press

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

enter image description here

welcome ;-)

like image 28
Yusuf Khan Avatar answered Oct 11 '22 20:10

Yusuf Khan


Edit: I no longer use Atom. The plugins I originally recommended here have all apparently ceased to be maintained. I've updated this answer with the suggestions in the comments, but please note I haven't tried any of these and will no longer be maintaining this answer.

Please check the comments or other answers for more up-to-date recommendations.


There are a number of Atom packages which give you access to the terminal from within Atom. Try a few out to find the best option for you.

Open a terminal in Atom:

If you want to open a terminal panel in Atom, try platformio-ide-terminal. Use the keyboard shortcut ctrl-` to open a new terminal instance.

Open an external terminal from Atom:

If you just want a shortcut to open your external terminal from within Atom, try open-terminal-here. You can use ctrl-alt-t to open your external terminal in the current file's directory, or ctrl-alt-shift-t to open the terminal in the project's root directory.

like image 21
codemacabre Avatar answered Oct 11 '22 19:10

codemacabre


Atom currently does not have a built-in terminal(that I know of), so you would have to install an additional package such as platformio-ide-terminal.

The following screenshots were taken on a mac.

  1. Click on Atom and select Preferences

    enter image description here

  2. In the Settings tab that appears, click on the add icon + to Install a new package

    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. Click Install
like image 15
JGallardo Avatar answered Oct 11 '22 21:10

JGallardo


First, you should install "platformio-ide-terminal": Open "Preferences ⌘," >> Click "+ Install" >> In "Search packages" type "platformio-ide-terminal" >> Click "Install".

And answering exactly the question. If you have previously installed, just use:

  • Shortcut: ctrl-` or Option+Command+T (⌥⌘T)
  • by Menu: Go to Packages > platformio-ide-terminal [or other] > New terminal
like image 7
Andre Araujo Avatar answered Oct 11 '22 21:10

Andre Araujo