This package provides:
This package consumes:
Made for Pulsar!
This package was written specifically for Pulsar and did not exist in the Atom package repository.
Quick access and switching between projects. Manage projects with tags, scanning, and recent history from a fuzzy-searchable list.


F10.Alt+F10.To install project-list search for project-list in the Install pane of the Pulsar settings or run ppm install project-list. Alternatively, you can run ppm install asiloisad/pulsar-project-list to install a package directly from the GitHub repository.
projects.csonYou can edit a file by command project-list:edit or by manually opening <config-dir>/projects.cson. The main file structure consists of a array of objects.
| Setting | Type | Description | Default |
|---|---|---|---|
title |
string |
Project title used in the project list | mandatory |
paths |
string[] |
The array of paths to project directories | mandatory |
tags |
string[] |
The tags help's organize and find projects | [] |
scan |
boolean|string|string[] |
scan paths and add subdirs as projects. A true is equal to "*/". More... |
false |
icon |
string |
custom icon of project e.g. "icon-star" |
"icon-file-directory" |
devMode |
boolean |
project should open in Dev Mode | false |
safeMode |
boolean |
project should open in Safe Mode | false |
Here is an example of projects.cson:
[
{
title: "py-bacadra",
paths: [
"C:/bacadra/"
],
tags: [
"bacadra"
]
scan: true
},
{
title: "Projects",
paths: [
"C:/Projects/",
"D:/Projects/"
],
tags: [
"Projects"
],
scan: [
"*/"
"*/[1233456798]*/"
]
},
{
title: "Samples",
paths: [
"C:/Samples/"
],
tags: [
"Samples"
]
devMode: true
}
]
Commands available in atom-workspace:
project-list:toggle: (F10) opens project list,project-list:recent: (Alt+F10) opens recent list,project-list:update: update projects list,project-list:edit: (Ctrl+F10) open configuration file.Commands available in .project-list:
select-list:open: (Enter) opens a new window with selected project,select-list:swap: (Alt+Enter) closes active window and opens a new one with the selected project,select-list:switch: (Ctrl+Enter) switches to a new window with the selected project,select-list:append: (Shift+Enter) appends selected project to active window,select-list:paste: (Alt+V) paste paths into active text-editor,select-list:external: (Alt+F12) open folders externally (via open-external),select-list:show: (Ctrl+F12) show folders in explorer (via open-external),select-list:update: (F5) update projects list.The package provides several configuration options available in Settings → Packages → project-list:
Shows info message with available keyboard shortcuts at the bottom of the project list panel.
trueWhen enabled, the parsed project list is stored in a cache file located in the Pulsar cache directory (<config-dir>/compile-cache/projects.json). This significantly improves performance when using the scan feature, as the package doesn't need to re-scan directories every time you open the project list. The cache is automatically updated when the projects.cson file changes.
trueWhen enabled, only adds projects to the list if at least one of their paths exists on the filesystem. This helps keep the project list clean by filtering out projects with non-existent directories.
trueWhen enabled, any text in the format [tag] within project titles will be parsed and displayed as styled tag elements (similar to the regular tags). For example, a title like My Project [dev] will display "dev" as a styled tag.
trueControls how the window title is modified when the open folders match a project's paths:
1open-externalWhen the open-external package is installed, two additional actions become available in both project list and recent list: open folders externally (Alt+F12) and show folders in explorer (Ctrl+F12). For multi-path projects, the action is applied to each path.
project-listProvides access to the project list manager instance. Other packages can use this to query and interact with the saved project list.
recent-listProvides access to the recent projects list manager instance. Other packages can use this to query and interact with the recent projects history.
Got ideas to make this package better, found a bug, or want to help add new features? Just drop your thoughts on GitHub — any feedback's welcome!