Getting Tramp to work on Xemacs
What is Tramp? Tramp is an ange-ftp like utility for Emacs/Xemacs that allows remote file viewing. More modern than ange-ftp, it's normally used to invoke secure protocols like scp, ssh etc., whereas ange-ftp was ftp based as its name implies. Tramp is actually an acronym for 'Transparent Remote (file) Access, Multiple Protocol'. The Xemacs documentation for Tramp may be found here . What goes in Xemacs config file? (require 'tramp) (setq tramp-default-method "scp") (setq tramp-default-user "yourusername") What syntax do you use to open a file on a remote machine? The online manuals specify this pretty clearly but I somehow didn't take what they said to heart. To avoid invoking "efs" (Which Xemacs needs for package downloading, so it can't be turned off, but is FTP based which we don't want) we need to use Tramp-like syntax which means use square brackets around the machine name. ...