Prevent TRAMP to login on remote host when loading.
--- a/.emacs-my Sun Dec 21 19:12:35 2008 +0200
+++ b/.emacs-my Sun Dec 21 22:12:34 2008 +0200
@@ -292,8 +292,11 @@
;; ----------------------------------------------------------------------
;; *Recentf*
-;; Recent files in menu
+
(require 'recentf)
+;; Prevent TRAMP to login on remote host when loading.
+;; Its take time and ask passwords!
+(setq recentf-auto-cleanup 'never)
(recentf-mode t)
(setq recentf-max-saved-items 200)
(global-set-key (kbd "\e\eq") 'recentf-open-files)
@@ -583,6 +586,7 @@
(list (cons "CONFIG\\." 'bat-mode))
(list (cons "AUTOEXEC\\." 'bat-mode))
auto-mode-alist))
+ ;; XXX Wrong!
(require 'bat-mode)
)
)