From 38809b91da7b6124cd09f73ba2980c397e94b8cc Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Wed, 12 Jun 2013 00:48:21 +0200 Subject: [PATCH] Emacs ffap-binding comment. --- .emacs.d/main.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.emacs.d/main.el b/.emacs.d/main.el index 2468fca7..1ddec03f 100644 --- a/.emacs.d/main.el +++ b/.emacs.d/main.el @@ -173,10 +173,13 @@ (setq calendar-week-start-day 1) (setq calendar-date-style 'iso) -;; IDO (Interactively Do Thing) for finding files and buffers. +;; IDO (Interactively Do Thing) for finding files and buffers. Incompatible with +;; FFAP. (require 'ido) (ido-mode t) (setq ido-enable-flex-matching t) +;; All file finding operation defaults to what is at point. Incompatible with +;; IDO. (ffap-bindings) ;; Quick buffer switching. (define-key my-keys-minor-mode-map (kbd "C-") 'previous-buffer) @@ -248,9 +251,9 @@ (if (string-match "edit*" (buffer-name)) (auto-fill-mode -1)))) - ;; Speedbar options. (add-hook 'speedbar-mode-hook (lambda () (speedbar-toggle-updates))) +