-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDefault.sublime-commands
28 lines (28 loc) · 2.49 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
[
{"caption": "KodiDevKit: Set Kodi Folder", "command": "set_kodi_folder"},
{"caption": "KodiDevKit: Build Skin", "command": "build_addon", "args": { "pack_textures": true}},
{"caption": "KodiDevKit: Build Theme", "command": "build_theme", "args": { "pack_textures": true}},
{"caption": "KodiDevKit: Remote Actions", "command": "remote_actions"},
{"caption": "KodiDevKit: Open Log", "command": "open_kodi_log"},
{"caption": "KodiDevKit: Choose color", "command": "color_picker"},
{"caption": "KodiDevKit: Reload Language Files", "command": "reload_kodi_language_files"},
{"caption": "KodiDevKit: Switch to Add-on", "command": "open_kodi_addon"},
{"caption": "KodiDevKit: Search for Label", "command": "search_for_label"},
{"caption": "KodiDevKit: Search for Image", "command": "search_for_image"},
{"caption": "KodiDevKit: Search for Font", "command": "search_for_font"},
{"caption": "KodiDevKit: Search for Builtins", "command": "search_for_builtin"},
{"caption": "KodiDevKit: Search for Boolean Conditions", "command": "search_for_visible_condition"},
{"caption": "KodiDevKit: Search for JSON Methods / Types / Notifications", "command": "search_for_json"},
{"caption": "KodiDevKit: Search translated Strings of open File", "command": "search_file_for_labels"},
{"caption": "KodiDevKit: Check Variables", "command": "check_variables", "args": { "check_type": "variable"}},
{"caption": "KodiDevKit: Check Includes", "command": "check_variables", "args": { "check_type": "include"}},
{"caption": "KodiDevKit: Check Fonts", "command": "check_variables", "args": { "check_type": "font"}},
{"caption": "KodiDevKit: Check Labels", "command": "check_variables", "args": { "check_type": "label"}},
{"caption": "KodiDevKit: Check Control / Window IDs", "command": "check_variables", "args": { "check_type": "id"}},
{"caption": "KodiDevKit: Check for invalid Nodes / Attributes", "command": "check_variables", "args": { "check_type": "general"}},
{"caption": "KodiDevKit: JSON-RPC: Reload Skin", "command": "execute_builtin", "args": { "builtin": "ReloadSkin()" }},
{"caption": "KodiDevKit: JSON-RPC: Execute Builtin", "command": "execute_builtin_prompt"},
{"caption": "KodiDevKit: JSON-RPC: Display InfoLabels", "command": "get_info_labels_prompt"},
{"caption": "KodiDevKit: JSON-RPC: Display Booleans", "command": "get_info_booleans_prompt"},
{"caption": "KodiDevKit: JSON-RPC: Open active Window XML", "command": "open_active_window_xml_from_remote"},
]