-
Notifications
You must be signed in to change notification settings - Fork 81
/
Default.sublime-commands
107 lines (107 loc) · 2.94 KB
/
Default.sublime-commands
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[
// extra command can be added to Command Palette as
// read the details of the arguments of `terminus_open` in README
// {
// "caption": "Terminus: Open iPython",
// "command": "terminus_open",
// "args" : {
// "cmd": ["ipython"],
// "cwd": "${file_path:${folder}}",
// "title": "iPython"
// }
// },
{
"caption": "Terminus: Open Default Shell in Tab (View)",
"command": "terminus_open"
},
{
"caption": "Terminus: Open Default Shell in Panel",
"command": "terminus_open",
"args": {"show_in_panel": true}
},
{
"caption": "Terminus: List Shells",
"command": "terminus_open",
"args": {"config_name": "<ask>"}
},
{
"caption": "Terminus: Toggle Panel",
"command": "toggle_terminus_panel",
"args": {"hide_active": true}
},
{
"caption": "Terminus: Reset",
"command": "terminus_reset"
},
{
"caption": "Terminus: Rename Title",
"command": "terminus_rename_title"
},
{
"caption": "Terminus: Close",
"command": "terminus_close"
},
{
"caption": "Terminus: Close All",
"command": "terminus_close_all"
},
{
"caption": "Terminus: Maximize to Tab",
"command": "terminus_maximize"
},
{
"caption": "Terminus: Minimize to Panel",
"command": "terminus_minimize"
},
{
"caption": "Terminus Utilities: Select Theme",
"command": "terminus_select_theme"
},
{
"caption": "Terminus Utilities: Generate User Theme",
"command": "terminus_generate_theme",
"args": {"force": true}
},
{
"caption": "Terminus Utilities: Remove User Theme",
"command": "terminus_generate_theme",
"args": {"remove": true}
},
{
"caption": "Preferences: Terminus Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Terminus/Terminus.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: Terminus View Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Terminus/Terminus View.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: Terminus Command Palette",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Terminus/Default.sublime-commands",
"default": "[\n\t$0\n]\n"
}
},
{
"caption": "Preferences: Terminus Key Bindings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Terminus/Default.sublime-keymap",
"user_file": "${packages}/User/Default ($platform).sublime-keymap",
"default": "[\n\t$0\n]\n"
}
}
]