forked from titoBouzout/SideBarEnhancements
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Commands.sublime-commands
134 lines (134 loc) · 3.28 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": "Side Bar Enhancements: New File Relative to Current View",
"command": "side_bar_new_file"
},
{
"caption": "Side Bar Enhancements: New File Relative to Project Root",
"command": "side_bar_new_file2"
},
{
"caption": "Side Bar Enhancements: New Folder Relative to Current View",
"command": "side_bar_new_directory"
},
{
"caption": "Side Bar Enhancements: New Folder Relative to Project Root",
"command": "side_bar_new_directory2"
},
{
"caption": "Side Bar Enhancements: Rename File",
"command": "side_bar_rename"
},
{
"caption": "Side Bar Enhancements: Duplicate File",
"command": "side_bar_duplicate"
},
{
"caption": "Side Bar Enhancements: Reveal (Open Containing Folder)",
"command": "side_bar_reveal"
},
{
"caption": "Side Bar Enhancements: Locate (Reveal in side bar)",
"command": "reveal_in_side_bar"
},
{
"caption": "Side Bar Enhancements: Move File...",
"command": "side_bar_move"
},
{
"caption": "Side Bar Enhancements: Delete File",
"command": "side_bar_delete"
},
{
"caption": "Side Bar Enhancements: Project Edit",
"command": "side_bar_project_open_file"
},
{
"caption": "Side Bar Enhancements: Copy File Name",
"command": "side_bar_copy_name"
},
{
"caption": "Side Bar Enhancements: Copy File Name Encoded",
"command": "side_bar_copy_name_encoded"
},
{
"caption": "Side Bar Enhancements: Copy File 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": "Side Bar Enhancements: Copy File 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": "Side Bar Enhancements: Copy as Tag a HTML HiperLink",
"command": "side_bar_copy_tag_ahref"
},
{
"caption": "Side Bar Enhancements: Copy as Tag script",
"command": "side_bar_copy_tag_script"
},
{
"caption": "Side Bar Enhancements: Copy as Tag style",
"command": "side_bar_copy_tag_style"
},
{
"caption": "Side Bar Enhancements: Copy File Path as URL",
"command": "side_bar_copy_url"
},
{
"caption": "Side Bar Enhancements: Search Files",
"command": "side_bar_find_files_path_containing"
},
{
"caption": "Side Bar Enhancements: Open In Browser - Testing Server",
"command": "side_bar_open_in_browser",
"args": {
"paths": [],
"type": "testing"
}
},
{
"caption": "Side Bar Enhancements: 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"
}
]