-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
25 lines (20 loc) · 1.44 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
[
// Built-in commands from Context.sublime-menu
{ "command": "open_in_browser", "caption": "Open in Browser" },
{ "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" },
// User/InsertDate.py
{ "command": "insert_date", "caption": "Insert Date" },
// QuickCal
{ "command": "calendar", "caption": "QuickCal: Calendar"},
{ "command": "calendar_lookup", "caption": "QuickCal: Calendar Lookup"},
// Find in Files at Current Folder
{ "command": "find_in_current_folder", "caption": "Find in Files: At Current Folder" },
// Preferences (override defaults)
{ "caption": "Preferences: Commands - User", "command": "open_file", "args": { "file": "${packages}/User/Default.sublime-commands" } },
{ "caption": "Preferences: Key Bindings - Windows", "command": "open_file", "args": { "file": "${packages}/User/Default (Windows).sublime-keymap"/*, "platform": "Windows"*/ } },
{ "caption": "Preferences: Key Bindings - Linux", "command": "open_file", "args": { "file": "${packages}/User/Default (Linux).sublime-keymap"/*, "platform": "Linux"*/ } },
{ "caption": "Preferences: Key Bindings - User's Default", "command": "open_file", "args": { "file": "${packages}/User/Default.sublime-keymap" } },
// Zen Tabs
{ "command": "zen_tabs_reload", "caption": "Zen Tabs: Reload Settings" },
{ "command": "switch_tabs", "caption": "Zen Tabs: Switch Tabs" }
]