forked from titoBouzout/SideBarEnhancements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Commands.sublime-commands
134 lines (134 loc) · 2.8 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[
{
"caption": "aaaaa_side_bar",
"command": "aaaaa_side_bar"
},
{
"caption": "File: New File Relative to Current View",
"command": "side_bar_new_file"
},
{
"caption": "File: New File Relative to Project Root",
"command": "side_bar_new_file2"
},
{
"caption": "File: New Folder Relative to Current View",
"command": "side_bar_new_directory"
},
{
"caption": "File: New Folder Relative to Project Root",
"command": "side_bar_new_directory2"
},
{
"caption": "File: Rename",
"command": "side_bar_rename"
},
{
"caption": "File: Duplicate",
"command": "side_bar_duplicate"
},
{
"caption": "File: Reveal",
"command": "side_bar_reveal"
},
{
"caption": "File: Locate",
"command": "reveal_in_side_bar"
},
{
"caption": "File: Move",
"command": "side_bar_move"
},
{
"caption": "File: Delete",
"command": "side_bar_delete"
},
{
"caption": "Project: Edit",
"command": "side_bar_project_open_file"
},
{
"caption": "File: Copy Name",
"command": "side_bar_copy_name"
},
{
"caption": "File: Copy Name Encoded",
"command": "side_bar_copy_name_encoded"
},
{
"caption": "File: Copy Path",
"command": "side_bar_copy_path"
},
{
"caption": "File: Copy Path Quoted",
"command": "side_bar_copy_path_quoted"
},
{
"caption": "File: Copy Path (Windows)",
"command": "side_bar_copy_path_absolute_from_project_encoded_windows"
},
{
"caption": "File: Copy Path as URI",
"command": "side_bar_copy_path_encoded"
},
{
"caption": "File: Copy Path Absolute To Project",
"command": "side_bar_copy_path_absolute_from_project"
},
{
"caption": "File: Copy Relative Path To Project",
"command": "side_bar_copy_path_relative_from_project"
},
{
"caption": "File: Copy Path Absolute To Project Encoded",
"command": "side_bar_copy_path_absolute_from_project_encoded"
},
{
"caption": "File: Copy Path Relative To Last Selected View ",
"command": "side_bar_copy_path_relative_to_last_selected_view"
},
{
"caption": "File: Copy as Tag a",
"command": "side_bar_copy_tag_ahref"
},
{
"caption": "File: Copy as Tag script",
"command": "side_bar_copy_tag_script"
},
{
"caption": "File: Copy as Tag style",
"command": "side_bar_copy_tag_style"
},
{
"caption": "File: Copy URL",
"command": "side_bar_copy_url"
},
{
"caption": "File: Search Files",
"command": "side_bar_find_files_path_containing"
},
{
"caption": "File: Open In Browser - Testing Server",
"command": "side_bar_open_in_browser",
"args": {
"paths": [],
"type": "testing"
}
},
{
"caption": "File: Open In Browser - Production Server",
"command": "side_bar_open_in_browser",
"args": {
"paths": [],
"type": "production"
}
},
{
"caption": "Side Bar: Refresh",
"command": "refresh_folder_list"
},
{
"caption": "zzzzz_side_bar",
"command": "zzzzz_side_bar"
}
]