Colin Marquardt <[EMAIL PROTECTED]> writes:

> Hi ex-colleague :),

Hi Colin,

"ex" is correct. Likely I'll leave the company soon as well.

> Actually, I'm not sure how to do this. I tried the following:
>
> ;; disable tramp - from
> ;;   http://mail.gnu.org/archive/html/emacs-devel/2002-11/msg00683.html,
> ;; typo "delelete" fixed:
> (setq file-name-handler-alist
>       (delete (assq 'tramp-completion-file-name-handler
>                       file-name-handler-alist)
>                 file-name-handler-alist))
> (setq file-name-handler-alist
>       (delete (assq 'tramp-file-name-handler
>                       file-name-handler-alist)
>                 file-name-handler-alist))
>
> but it doesn't seem to take effect?

Try this one:

(setq file-name-handler-alist
      (delete (rassq 'tramp-completion-file-name-handler
                     file-name-handler-alist)
              (delete (rassq 'tramp-file-name-handler
                             file-name-handler-alist)
                      (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function)
                            (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function)
                                  file-name-handler-alist)))))

> Cheers,
>   Colin

Best regards, Michael.



_______________________________________________
Tramp-devel mailing list
[EMAIL PROTECTED]
http://mail.nongnu.org/mailman/listinfo/tramp-devel

Reply via email to