Skip to content

Instantly share code, notes, and snippets.

@connorjan
Last active March 6, 2024 21:06
Show Gist options
  • Star 50 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save connorjan/8b9d9fa8f252cf145ef3e2ad9b708f46 to your computer and use it in GitHub Desktop.
Save connorjan/8b9d9fa8f252cf145ef3e2ad9b708f46 to your computer and use it in GitHub Desktop.
Editing Files Remotely via SSH on SublimeText 3

Editing Files Remotely via SSH on SublimeText 3

Sometimes you need to edit a file on a remote server, but using vim/emacs is not very practical, due to lag and speed of screen refresh.

TextMate users have the classic rmate, but it was implemented in Ruby, which may not be available on the remote server.

A better option is to use this version of rmate, implemented in pure Bash. It's a single file, self-contained, and with no external dependencies.

Step by step:

  1. On your local workstation: On Sublime Text 3, open Package Manager (Ctrl-Shift-P on Linux/Win, Cmd-Shift-P on Mac, Install Package), and search for RemoteSubl

  2. On your local workstation: Add RemoteForward 52698 127.0.0.1:52698 to your .ssh/config file, or -R 52698:localhost:52698 if you prefer command line

  3. On your remote server:

    sudo wget -O /usr/local/bin/rsub https://raw.github.com/aurora/rmate/master/rmate
    sudo chmod a+x /usr/local/bin/rsub

Just keep your ST3 editor open, and you can easily edit remote files with $ rsub myfile.txt

EDIT: if you get "no such file or directory", it's because your /usr/local/bin is not in your PATH. Just add the directory to your path:

echo "export PATH=\"$PATH:/usr/local/bin\"" >> $HOME/.bashrc

Now just log off, log back in, and you'll be all set.

Credits: Gui Ambros via https://wrgms.com/editing-files-remotely-via-ssh-on-sublimetext-3/

@ams001
Copy link

ams001 commented Jul 9, 2020

While this solution works for editing files on a single remote host t a time, how can I simultaneously edit multiple files across multiple hosts?

@jinseokim
Copy link

Thanks!

@cortesimone
Copy link

👍

@biemster
Copy link

pure magic!

@osscar
Copy link

osscar commented Apr 19, 2022

pure magic!

i totally confirm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment