ityu
7/14/2015 - 5:25 AM

Sublime SFTP config

Sublime SFTP config

{
    "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": "",
    "user": "",
    "password": "",
    "port": "",
    
    "remote_path": "/",
    "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"
    ],

    "extra_list_connections": 4,

    "connect_timeout": 30,
    "keepalive": 30,
    
    "preserve_modification_times": true,
    
    "remote_encoding": "utf-8",
}