-
Notifications
You must be signed in to change notification settings - Fork 19
/
Default.sublime-commands
92 lines (92 loc) · 2.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[
{
"caption": "File Manager: New File",
"command": "fm_create"
},
{
"caption": "File Manager: Move",
"command": "fm_move"
},
{
"caption": "File Manager: Duplicate",
"command": "fm_duplicate"
},
{
"caption": "File Manager: Delete",
"command": "fm_delete"
},
{
"caption": "File Manager: Open Containing Folder…",
"command": "fm_open_in_explorer",
},
{
"caption": "File Manager: Open In Browser",
"command": "fm_open_in_browser"
},
{
"caption": "File Manager: Open Terminal",
"command": "fm_open_terminal"
},
{
"caption": "File Manager: Find In Files",
"command": "fm_find_in_files"
},
{
"caption": "File Manager: Copy Name",
"command": "fm_copy",
"args": {
"which": "name"
}
},
{
"caption": "File Manager: Copy Absolute Path",
"command": "fm_copy",
"args": {
"which": "absolute path"
}
},
{
"caption": "File Manager: Copy Relative Path",
"command": "fm_copy",
"args": {
"which": "relative path"
}
},
{
"caption": "File Manager: Copy Path From Root",
"command": "fm_copy",
"args": {
"which": "path from root"
}
},
{
"caption": "File Manager: Create Template",
"command": "fm_create",
"args": {
"paths": ["${packages}/User/.FileManager/"],
"initial_text": "template."
}
},
{
"caption": "File Manager: List Templates",
"command": "fm_create",
"args": {
"paths": ["${packages}/User/.FileManager/"],
"initial_text": "",
"start_with_browser": true,
"no_browser_action": true
}
},
{
"caption": "Preferences: File Manager Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/FileManager/FileManager.sublime-settings",
"default": "// Your settings for FileManager. See the default file to see the different options. \n{\n\t$0\n}\n"
}
},
{
"caption": "File Manager: Create File From Selection",
"command": "fm_create_file_from_selection"
}
]