SFTP plugin. The main function is to connect remote server through FTP/SFTP, can upload local project to server, get file list from server, choose to download Edit, rename, delete and so on, click Download Edit, you can open this file for modification. After the modification is completed, save it will automatically upload to the remote server above, using this plugin, the efficiency can be greatly improved, the following to record the specific configuration method.
{
//SFTP or FTP or FTPS
"type": "FTP",
/////upload automatically save
"Save_before_upload": true,
//Save after auto upload
"upload _on_save ": false,
//sync far end to local
" Sync_down_on_open ": false,
//Skip deleted file
" Sync_skip_deletes "when synchronizing: False,
//Turn on "Download Confirmation" "
confirm_downloads": false,
//Turn on "Sync Confirmation"
"Confirm_sync": true,
//Turn on " Overwrite confirmation "
" Confirm_overwrite_newer ": false,
//host
" hostname ":" xxx.xxx.xxx.xxx ",
//account
" user ":" xxxxxxxx ",
//password
" password ":" xxxxxxxx ",
//Port number
" Port ":" + ",
//Remote folder path
" Remote_path ":"/public_html/",
//Ignore the file or folder
" ignore_regexes ": [
" \.sublime-(project|workspace) "," Sftp-config ( -alt\d?)? \.json ",
" Sftp-settings\.json ","/venv/"," \.svn "," \.HG "," \.git ",
" \.bzr "," _darcs "," CVS "," \. " Ds_store ",
" thumbs\.db "," Desktop\.ini "
]
}
"Shortcut keys" upload files
OS x:ctrl+cmd+u+f
Win/linux:ctrl+alt+u+f
"Shortcut keys" upload edited files
OS X:ctrl+cmd+u+c
Win/linux:ctrl+alt+u+c
"Shortcut keys" Upload open files
OS X:ctrl+cmd+u+n
Win/linux:ctrl+alt+u+n
"Shortcut keys" Download files
OS X:ctrl+cmd+u+o
Win/linux:ctrl+alt+u+o
"Shortcut key" uploads the folder where the current file resides
OS X:ctrl+cmd+u+r
Win/linux:ctrl+alt+u+r
"Shortcut keys" Download the folder where the current file is located
OS x:ctrl+cmd+u+e
Win/linux:ctrl+alt+u+e
"Shortcut keys" Compare file changes
OS X:ctrl+cmd+u+i
Win/linux:ctrl+alt+u+i
"Shortcut keys" Synchronize local to remote
OS X:ctrl+cmd+u+y
Win/linux:ctrl+alt+u+y
"Shortcut keys" Synchronize remote to Local
OS X:ctrl+cmd+u+d
Win/linux:ctrl+alt+u+d
"Shortcut keys" Bidirectional synchronization
OS x:ctrl+cmd+u+b
Win/linux:ctrl+alt+u+b
"Shortcut" Monitoring file
OS x:ctrl+cmd+u+m
Win/linux:ctrl+alt+u+m
"Shortcut keys" Browse the far end
OS x:ctrl+cmd+u+w
Win/linux:ctrl+alt+u+w
Shortcut keys Settings Server
OS X:ctrl+cmd+r+s
Win/linux:ctrl+alt+r+s
Shortcut keys Browse the Server
OS x:ctrl+cmd+r+b
Win/linux:ctrl+alt+r+b
"Shortcut Keys" shows the last Server used
OS X:ctrl+cmd+r+n
Win/linux:ctrl+alt+r+n
Shortcut keys Edit the Server
OS x:ctrl+cmd+r+e
Win/linux:ctrl+alt+r+e
"Shortcut keys" Delete Server
OS X:ctrl+cmd+r+d
Win/linux:ctrl+alt+r+d
"Shortcut keys" displays the SFTP panel
OS X:ctrl+cmd+u+s
Win/linux:ctrl+alt+u+s
"Shortcut Keys" stop
OS x:ctrl+cmd+u+x
Win/linux:ctrl+alt+u+x
Transferred from: http://www.cnblogs.com/Life-Record/p/5599832.html