Emacs ffap-binding comment.

master
Pierre Neidhardt 2013-06-12 00:48:21 +02:00
parent 118156bdaa
commit 38809b91da
1 changed files with 5 additions and 2 deletions

View File

@ -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-<prior>") '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)))