ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Remote​Tree

by deNULL ST3 WinMac

Sublime Text 3 plugin for browsing remote file tree via SFTP

Details

Installs

  • Total 47
  • Win 28
  • Mac 8
  • Linux 11
Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

RemoteTree

This Sublime Text 3 plugin allows you to browse directories on remote servers without need to download the whole file structure.

Screenshot

Installation

  1. Download this package as ZIP file, extract it.
  2. Select PreferencesBrowse Packages… in Sublime Text menu.
  3. Copy RemoteTree directory to the directory containing all your packages.
  4. Restart Sublime Text.

Alternatively, you can install this package via Package Control (not yet available).

Usage

For now, this package supports two workflows: 1. You can connect to servers specified in the file RemoteTree.sublime-settings located in your user settings directory. 2. Or you can quickly connect to any server without saving auth data. All downloaded files will be stored to the temporary directory, and it will be erased when you'll close the remote tree.

To configure your list of servers, select RemoteEdit Servers/Settings in the menu. It will create a config file (if it does not exist), and fill it with following content:

{
  "servers": [{
    // Used in menu and as tree panel title
    // "display_name": "My Server",

    // IP or hostname (Required)
    "host": "example.com",

    // Default is 22
    // "port": 22,

    // Root directory at the server ("/" by default)
    // "remote_path": "/",

    // Directory at this computer to map to remote root (Required)
    // When you edit files on server they will be downloaded here first.
    // All files saved in this directory (or its subdirectories) will be uploaded to the appropriate paths on the server.
    "local_path": "~/Sites/",

    // Username
    "user": "root",

    // Password (comment out if you're using private keys)
    "password": "",

    // Location of the private key file to use for authentication
    // Keys located at ~/.ssh are loaded automatically, you don't need to specify them here.
    // "ssh_key_file": "",

    // Password for the private key
    // "ssh_key_pass": "",

    // If true, ignores modification times of files and downloads them even if they are unchanged.
    // "always_download": false,
  }]
}

You need to fill at least “host”, “local_path” and “password” (you need to comment this field out if you're using key files for authorisation).

After that you can save the file, select RemoteConnect… and select the newly added server from the list. RemoteTree should connect to it and present you a view with the remote file structure.

When you click any file in the remote tree, it will be downloaded to the corresponding subdirectory of “local_path” you specified. If file already exists and its modification time is not older than the remote file, it will not be downloaded again (unless you specified “always_download” option).

Each local file under “local_path” on save will be uploaded back to the server. The modification times are not checked, so be careful not to overwrite other changes.

You can open any number of remote trees (for different servers as well as for the same one). Connection to the remote server will be closed when you close the last opened remote tree connected to it.

If you restart Sublime Text, all remote trees should reconnect automatically.

If something goes wrong, check the console (Alt/Opt + ) — is there's some errors, report them as issues.