-
Notifications
You must be signed in to change notification settings - Fork 0
/
Commands.sublime-commands
executable file
·88 lines (88 loc) · 2.19 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
[
{
"caption": "File: New File Relative to Current View",
"command": "side_bar_new_file"
},
{
"caption": "File: Rename",
"command": "side_bar_rename"
},
{
"caption": "File: Duplicate",
"command": "side_bar_duplicate"
},
{
"caption": "File: Reveal",
"command": "side_bar_reveal"
},
{
"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 as URI",
"command": "side_bar_copy_path_encoded"
},
{
"caption": "File: Copy Path From Project",
"command": "side_bar_copy_path_absolute_from_project"
},
{
"caption": "File: Copy Path From Project Encoded",
"command": "side_bar_copy_path_absolute_from_project_encoded"
},
{
"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"
}
]