At the SLIME repl on a remote SWANK, typing:
(open "~/
and then hitting TAB
This brings up a buffer with auto-completions on my local filesystem. Anyone know how to make it show the files on the remote system?
Currently my .emacs looks like this:
(load (expand-file-name "~/quicklisp/slime-helper.el"))
(setq inferior-lisp-program "sbcl")
(require 'slime)
(slime-setup '(slime-fancy slime-tramp slime-asdf))
(slime-require :swank-listener-hooks)
(push (slime-create-filename-translator :machine-instance "ws1"
:remote-host "ws1"
:username "myusername")
slime-filename-translations)
I've been googling and trying random stuff for a bit now, any help is much appreciated!