-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCommands.sublime-commands
56 lines (56 loc) · 1.21 KB
/
Commands.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
[
{
"caption": "File: Reveal in Sidebar",
"command": "reveal_in_side_bar",
"args": { "paths": [] }
},
{
"caption": "File: Copy Filename",
"command": "side_bar_copy_name",
"args": { "paths": [] }
},
{
"caption": "File: Copy Relative Path",
"command": "side_bar_copy_relative_path",
"args": { "paths": [] }
},
{
"caption": "File: Copy Relative POSIX Path",
"command": "side_bar_copy_relative_path",
"args": { "paths": [], "style": "posix" }
},
{
"caption": "File: Copy Absolute Path",
"command": "side_bar_copy_absolute_path",
"args": { "paths": [], "context": "palette" }
},
{
"caption": "File: Delete",
"command": "side_bar_delete",
"args": { "paths": [] }
},
{
"caption": "File: Duplicate…",
"command": "side_bar_duplicate",
"args": { "paths": [] }
},
{
"caption": "File: Move…",
"command": "side_bar_move",
"args": { "paths": [] }
},
{
"caption": "File: New…",
"command": "side_bar_new",
"args": { "paths": [] }
},
{
"caption": "Preferences: SideBarTools Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/SideBarTools/SideBarTools.sublime-settings",
"default": "// SideBarTools Settings - User\n{\n\t$0\n}\n"
}
}
]