-
Notifications
You must be signed in to change notification settings - Fork 4
/
edit-preferences.sublime-commands
39 lines (30 loc) · 1.48 KB
/
edit-preferences.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
[
{ "caption": "Edit Preference: List Settings", "command": "list_settings"},
{ "caption": "Edit Preference: List Plugins Commands", "command": "list_commands" },
{ "caption": "Edit Preference: List Shortcut Keys", "command": "list_shortcut_keys"},
{ "caption": "Edit Preference: Theme",
"command": "edit_package_files",
"args": {"pref_type": "sublime-theme"}},
{ "caption": "Edit Preference: sublime-completions",
"command": "edit_package_files",
"args": {"pref_type": "sublime-completions"}},
{ "caption": "Edit Preference: sublime-build",
"command": "edit_package_files",
"args": {"pref_type": "sublime-build"}},
{ "caption": "Edit Preference: sublime-mousemap",
"command": "edit_package_files",
"args": {"pref_type": "sublime-mousemap"}},
{ "caption": "Edit Preference: sublime-menu",
"command": "edit_package_files",
"args": {"pref_type": "sublime-menu"}},
{ "caption": "Edit Preference: tmTheme|colorscheme",
"command": "edit_package_files",
"args": {"pref_type": ".*\\.(tmTheme|stTheme)$"}},
{ "caption": "Edit Preference: tmLanguage|syntax|grammar",
"command": "edit_package_files",
"args": {"pref_type": ".*\\.((tm|st)Language)$"}},
{ "caption": "Edit Preference: sublime-commands",
"command": "edit_package_files",
"args": {"pref_type": "sublime-commands"}},
{ "caption": "Edit Preference: List Menus", "command": "list_menu_bindings"}
]