-
Notifications
You must be signed in to change notification settings - Fork 18
/
InsertDate.sublime-commands
39 lines (32 loc) · 1.03 KB
/
InsertDate.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
[
// Package commands
{ "caption": "InsertDate: Show Panel",
"command": "insert_date_panel"
},
{ "caption": "InsertDate: Default",
"command": "insert_date"
},
{ "caption": "InsertDate: Custom",
"command": "insert_date_prompt"
},
{ "caption": "InsertDate: Select Timezone",
"command": "insert_date_select_timezone"
},
// Configuration files
{ "caption": "InsertDate: Open README",
"command": "open_file",
"args": {"file": "${packages}/InsertDate/README.md"}
},
{ "caption": "Preferences: InsertDate Settings - Default",
"command": "open_file",
"args": {"file": "${packages}/InsertDate/insert_date.sublime-settings"}
},
{ "caption": "Preferences: InsertDate Settings - User",
"command": "open_file",
"args": {"file": "${packages}/User/insert_date.sublime-settings", "contents": "{\n\t$0\n}"}
},
{ "caption": "Preferences: InsertDate Keybindings - Default",
"command": "open_file",
"args": {"file": "${packages}/InsertDate/Default ($platform).sublime-keymap"}
}
]