-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
132 lines (132 loc) · 3.33 KB
/
Default.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
[
{
"caption": "SFTP: Upload File",
"command": "sftp_upload_file"
},
{
"caption": "SFTP: Upload Open Files",
"command": "sftp_upload_open_files"
},
{
"caption": "SFTP: Download File",
"command": "sftp_download_file"
},
{
"caption": "SFTP: Upload Folder",
"command": "sftp_upload_folder"
},
{
"caption": "SFTP: Download Folder",
"command": "sftp_download_folder"
},
{
"caption": "SFTP: Diff Remote File",
"command": "sftp_diff_remote_file"
},
{
"caption": "Rename Local and Remote Files",
"command": "sftp_rename_local_and_remote_paths"
},
{
"caption": "Delete Local and Remote Files",
"command": "sftp_delete_local_and_remote_paths"
},
{
"caption": "Delete Remote File",
"command": "sftp_delete_remote_path"
},
{
"caption": "SFTP: Sync Local -> Remote…",
"command": "sftp_sync_up"
},
{
"caption": "SFTP: Sync Remote -> Local…",
"command": "sftp_sync_down"
},
{
"caption": "SFTP: Sync Both Directions…",
"command": "sftp_sync_both"
},
{
"caption": "SFTP: Monitor File (Upload on External Save)",
"command": "sftp_monitor_file"
},
{
"caption": "SFTP: Upload VCS Changed Files",
"command": "sftp_vcs_changed_files"
},
{
"caption": "SFTP: Browse Remote…",
"command": "sftp_browse"
},
{
"caption": "SFTP: Setup Server…",
"command": "sftp_create_server"
},
{
"caption": "SFTP: Browse Server…",
"command": "sftp_browse_server"
},
{
"caption": "SFTP: Edit Server…",
"command": "sftp_edit_server"
},
{
"caption": "SFTP: Delete Server…",
"command": "sftp_delete_server"
},
{
"caption": "SFTP: Map to Remote…",
"command": "sftp_create_config"
},
{
"caption": "SFTP: Edit Remote Mapping…",
"command": "sftp_edit_config"
},
{
"caption": "SFTP: Add Alternate Remote Mapping…",
"command": "sftp_create_alt_config"
},
{
"caption": "SFTP: Switch Remote Mapping…",
"command": "sftp_switch_config"
},
{
"caption": "SFTP: Show Panel",
"command": "sftp_show_panel"
},
{
"caption": "SFTP: Cancel Upload",
"command": "sftp_cancel_upload"
},
{
"caption": "Preferences: SFTP Settings",
"command": "open_file", "args":
{
"file": "${packages}/SFTP/SFTP.sublime-settings"}
},
{
"caption": "Preferences: SFTP Key Bindings",
"command": "open_file", "args":
{
"file": "${packages}/SFTP/Default (Windows).sublime-keymap",
"platform": "Windows"
}
},
{
"caption": "Preferences: SFTP Key Bindings",
"command": "open_file", "args":
{
"file": "${packages}/SFTP/Default (OSX).sublime-keymap",
"platform": "OSX"
}
},
{
"caption": "Preferences: SFTP Key Bindings",
"command": "open_file", "args":
{
"file": "${packages}/SFTP/Default (Linux).sublime-keymap",
"platform": "Linux"
}
}
]