forked from FichteFoll/FileHistory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
executable file
·56 lines (55 loc) · 1.52 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
[
// Open readme and settings
{
"caption": "File History: Open README",
"command": "open_file",
"args": {
"file": "${packages}/File History/README.md"
}
},
{
"caption": "Preferences: File History Settings - Default",
"command": "open_file",
"args": {
"file": "${packages}/File History/FileHistory.sublime-settings"
}
},
{
"caption": "Preferences: File History Settings - User",
"command": "open_file",
"args": {
"file": "${packages}/User/FileHistory.sublime-settings",
"contents": "{\n\t$0\n}"
}
},
// File History commands
{
"caption": "File History: Open most recently closed file",
"command": "open_recently_closed_file",
"args": {
"action": "open_latest_closed"
}
},
{
"caption": "File History: Open recently closed file… (Current Project)",
"command": "open_recently_closed_file"
},
{
"caption": "File History: Open recently closed file… (All Projects)",
"command": "open_recently_closed_file",
"args": {
"current_project_only": false
}
},
{
"caption": "File History: Cleanup file history",
"command": "cleanup_file_history",
"args": {
"current_project_only": false
}
},
{
"caption": "File History: Reset file history (DELETE ALL)",
"command": "reset_file_history"
}
]