-
Notifications
You must be signed in to change notification settings - Fork 19
/
Tab Context.sublime-menu
35 lines (35 loc) · 1.1 KB
/
Tab Context.sublime-menu
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
[
{ "caption": "-", "id": "file" },
{ "caption": "Open In Browser", "command": "fm_open_in_browser" },
{ "caption": "-", "id": "file_manager" },
{ "caption": "Rename...", "command": "fm_rename_path" },
{ "caption": "Move...", "command": "fm_move" },
{ "caption": "Duplicate...", "command": "fm_duplicate" },
{ "caption": "Delete", "command": "fm_delete" },
{
"caption": "Copy…",
"mnemonic": "C",
"children": [
{
"caption": "Name",
"command": "fm_copy",
"args": { "which": "name" }
},
{
"caption": "Absolute Path",
"command": "fm_copy",
"args": { "which": "absolute path" }
},
{
"caption": "Path From Root",
"command": "fm_copy",
"args": { "which": "path from root" }
},
{
"caption": "Relative Path",
"command": "fm_copy",
"args": { "which": "relative path" }
}
]
}
]