Mote
SFTP Remote Editing for Sublime Text 2
Details
Installs
- Total 4K
- Win 2K
- Mac 913
- Linux 558
Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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
Info
Sublime Text plugin to browse and edit files over sftp/ssh2
- Uses the power of the quick panel completions to browse around files
- Automatically hooks into file saves and uploads after saving
- Optionally, continues to spider the file tree populating the quick panel list
Installation
Download this package and save and extract to your packages folder.
Download and install PuTTY, preferably the whole package.
(PuTTYgen is needed to create keys)
(PuTTY is needed to save sessions, (host,username,key information)
(Pageant to manage those sessions)
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
- Make psftp accessible to the plugin
- Copy
psftp.exe
toMote\
Usage
Add Servers
edit the Mote\serves.json
file
connection_string connection string that's going to be passed to psftp See http://the.earth.li/~sgtatham/putty/0.61/htmldoc/Chapter6.html#psftp-pubkey
idle_recursive whether or not Mote should spider your sftp in the background
default_path
default path to cd
into
password password for sftp. Use this option if your PuTTY session name or password contains a space
private_key
path to private key. Remember to escape the \
into \\
NOTE: if you wish to place your password here, it cannot contain a '!' Due to limitations of psftp See http://the.earth.li/~sgtatham/putty/0.61/htmldoc/Chapter6.html#psftp-cmd-pling
servers.json
Make sure you have a valid json object here. http://jsonlint.com/
{
"SERVER_NICKNAME":{
"connection_string": "saved_putty_session_name",
"idle_recursive": true
},
"SERVER_NICKNAME2":{
"connection_string": "USERNAME@HOSTNAME_OR_IP",
"password":"MYPASSWORD",
"idle_recursive": false,
"default_path": "iniital/path/to/open/to"
},
"SERVER_NICKNAME3":{
"connection_string": "USERNAME@HOSTNAME_OR_IP",
"password":"MYPASSWORD",
"private_key":"C:\\PATH\\TO\\PRIVATE\\KEY.ppk",
"idle_recursive": false,
"default_path": "iniital/path/to/open/to"
}
}
Then Invoke Mote
Run through the command palette
Ctrl+Shift+P
Mote
Enter
Or, Add to your keybinds
{ "keys": ["ctrl+m"], "command": "mote" }
Then
Ctrl+m
Then browse around and edit
- Browse around. The file list populates as you delve deeper into the file tree.
- Click on a file to download to a temp folder and open it
- Any saves on that file will automatically upload it.