-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathproject_manager.sublime-settings
40 lines (34 loc) · 1.73 KB
/
project_manager.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
// The path to the Projects folder, could be either a string or a directory with keys
// associated with computer names.
// If you are not sure about your computer name, run the following in the sublime console
//
// from ProjectManager.project_manager import computer_name; print(computer_name())
//
// "projects": {
// "computer1": "path/to/computer1/projects",
// "computer2": "path/to/computer1/projects"
// }
// For backward compatibility, each entry could be also an array of directories.
// The variable `$default` will expand to `PATH/TO/Packages/Users/Projects`,
// and `$hostname` will expand to the computer name.
// Please note that they shall be the folders containing solely *.sublime-project or
// *.sublime-workspace files. It is not intended to be used for automatic project discovery.
"projects": "$default",
// If there are more than one directory, prompt which directory to save the project files.
"prompt_project_location": true,
// Windows/Linux only
// close project when the window is closed
"close_project_when_close_window": true,
// Show recent projects first
// if false, the projects are sorted alphabetically
"show_recent_projects_first": true,
// Show active projects first
"show_active_projects_first": true,
// The string to use as the active indicator for the project list.
"active_project_indicator": "*",
// How the projects in the project list should be formatted. Supported variables
// are "project_name" and "active_project_indicator". For inactive projects
// "active_project_indicator" will be an empty string.
"project_display_format": "{project_name}{active_project_indicator}"
}