bluszcz
bluszcz

Reputation: 4128

Sublime Text 2 is sluggish during work over sshfs

I am using Sublime Text 2.0.1, and unfortunately making it work with files distributed over sshfs is a pain - switch to other tab and go back makes Sublime checking if file has not been changed.

Are there any Sublime preferences or maybe sshfs mount options which can make my work over remote resources possible?

For now I am using following sshfs option (faster encryption):

-o Ciphers=arcfour

Upvotes: 12

Views: 5900

Answers (4)

Akhil
Akhil

Reputation: 1040

To stop sublime text listening for file modifications and indexing files for goto definitions which slows down loading of folders, use these options. I use sshfs mounts and this trick worked great. don't forget to restart sublime text.

settings

{
    "index_files": false,
    "show_definitions": false
}

Upvotes: 0

Victor Di
Victor Di

Reputation: 1198

This:

{
    "index_files": false
}

in the settings of sublime helped me.

Upvotes: 0

pstadler
pstadler

Reputation: 2263

As @havoc-io said, this is mainly a problem of how ST2 listens to file system modifications. sshfs is simply too slow to handle the requests.

I'd recommend you to use a plugin like Sublime SFTP.

Upvotes: 0

havoc-io
havoc-io

Reputation: 149

This is really more of a problem with SSHFS and FUSE-based file systems than Sublime Text.

If you want something a bit more robust and easy to use, you can try something that I've been working on called 'xeno' (https://xeno.io). I was similarly having problems with SSHFS (more to do with a shoddy connection than sluggish editor performance), so I put together this Git/SSH mashup as a replacement for SSHFS. It will allow you to open up files/folders in Sublime Text (or any local editor really) over an SSH connection, and automatically synchronize changes to the remote machine. You can even start your local editor from inside an SSH connection and have it continue to synchronize changes to the remote after you quit the SSH session. It should work on almost all POSIX systems (I myself use it from OS X to connect to Linux machines and edit files in Sublime Text).

What it does is generate an out-of-worktree Git repository of the files you want to edit on the remote machine, and then clones it locally and uses Git over SSH as a transport/synchronization mechanism. This does not interfere with any existing source control, and it also does not require you to use any existing source control. And because it's built on Git, it's extremely fast and supports automatic merging of files that might be changing on both ends, unlike SSHFS/rmate/rsub which will just clobber any files with older timestamps.

It's also free and open source :), and I'd really love some feedback.

Upvotes: 5

Related Questions