Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple projects on single window in Github Atom editor

Is it able to add multiple projects on same window in Github Atom editor as in sublime text? Any options ?

like image 655
Gopesh Avatar asked Aug 09 '14 16:08

Gopesh


People also ask

How do I open multiple projects in Atom?

You can also add more than one directory to your current Atom window, by choosing File > Add Project Folder from the menu bar or pressing Ctrl+Shift+A . You can open any number of directories from the command line by passing their paths to the atom command line tool.

How do I open multiple folders in an Atom?

Using Multiple Folders The key-binding for this command is cmd-shift-o on Mac and ctrl-alt-o on Linux and Windows. To remove a folder from the project, right-click on it in the tree-view and select Remove Project Folder from the context menu.

What happened to Atom editor?

We are archiving Atom and all projects under the Atom organization for an official sunset on December 15, 2022. When we formally introduced Atom in 2014, we set out to give developers a text editor that was deeply customizable but also easy to use—one that made it possible for more people to build software.

How do I start a new project in Atom?

Inside your 'projects' folder, we recommend creating a new folder called 'test' and opening it in Atom. This test folder will open in the side pane of Atom. From here, you can select file > New File, and a new file will appear it Atom's sidebar. You can then select file > Save As to name your new file.


2 Answers

The option to add multiple project folders has been added to the Atom editor in April 2015.

See this blog post for more information.

To use this feature, you have the following options:

  • Provide multiple folders on the Atom command line: atom ./folder1 ./folder2
  • Use the Application: Add Project Folder command from the command palette.
like image 59
nwinkler Avatar answered Sep 26 '22 00:09

nwinkler


I'm using Atom 1.23 and you currently are able to do this.

All you have to do is go to File -> Add Project Folder

enter image description here

enter image description here

like image 45
Robert Rocha Avatar answered Sep 22 '22 00:09

Robert Rocha