標籤:keepalive out .net ima images 分享 highlight pass offset
採用sublime SFTP外掛程式,直接儲存CentOS伺服器的NodeJS檔案,這樣調試起來很方便,當然得配上
一直採用File -> SFTP/FTP -> Setup Server/Browse Server, 這樣的話一直就把檔案儲存在c:\users\【使用者名稱】\appdata\local\temp\sublime-sftp-browse-1465899934\【Centos服務上面的路徑】!
把sublime-sftp-browse-1465899934檔案夾拖放到sublime裡面,一直採用這樣的方式在操作,也一直相安無事,每次已修改檔案,然後Ctrl + S 就自動上傳的伺服器,然後......,伺服器就自動訪問了!
突然的案頭管理軟體自動清空了垃圾檔案,突然發現我的本地代碼檔案都木有了!沒辦法只能重新整理一下了,所以在就在案頭建立了nodeserver檔案夾,然後把此檔案夾拖進sublime,然後進行設定SFTP/FTP,
整個的sftp-config.json的檔案如下:
{ // The tab key will cycle through the settings when first created // Visit http://wbond.net/sublime_packages/sftp/settings for help // sftp, ftp or ftps "type": "sftp", "save_before_upload": true, "upload_on_save": true, "sync_down_on_open": true, "sync_skip_deletes": false, "sync_same_age": true, "confirm_downloads": false, "confirm_sync": false, "confirm_overwrite_newer": false, "host": "www.xxxx.club", "user": "root", "password": "xxxxxxxxxx", //"port": "22", "remote_path": "/home/testen/nodeserver/", //"file_permissions": "664", //"dir_permissions": "775", //"extra_list_connections": 0, "connect_timeout": 30, "keepalive": 120, "ftp_passive_mode": true, //"ftp_obey_passive_host": false, //"ssh_key_file": "~/.ssh/id_rsa", //"sftp_flags": ["-F", "/path/to/ssh_config"], //"preserve_modification_times": false, //"remote_time_offset_in_hours": 0, //"remote_encoding": "utf-8", //"remote_locale": "C", //"allow_config_upload": false,}
大部分內容,相信各位看官都情況,我就不多說了
"save_before_upload": true,
"upload_on_save": true,
這兩個參數尤為重要,save_before_upload表示在上傳之前進行儲存,upload_on_save在儲存時進行上傳!
ok,這樣就達到了目的,在sublime儲存後,自動上傳檔案,這樣就方便瀏覽了!
Sublime 3 如何設定xftp 儲存自動上傳