Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add project folder in Atom from terminal

I try currently to add project folder to Atom using terminal. But I don't find any usefull documentation about this subject.

How add project folder in Atom from terminal - an Atom terminal or external terminal ?

enter image description here Atom editor, at bottom we can see the platformio ide terminal...

Thank you

like image 450
HoCo_ Avatar asked May 11 '18 21:05

HoCo_


1 Answers

You can use the --add/ -a flag to add a folder to an already open Atom session.

Examples:

# add current folder to Atom
atom -a .

# add specific path to Atom
atom -a full/path/to/project

See atom --help for a list of all available flags.

like image 63
idleberg Avatar answered Sep 24 '22 13:09

idleberg