Some minor fixes
* dired-x.el (dired-mode-map): Fix last change. * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
This commit is contained in:
parent
4fa5174182
commit
3b922c70d6
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2014-01-12 Leo Liu <sdl.web@gmail.com>
|
||||
|
||||
* dired-x.el (dired-mode-map): Fix last change.
|
||||
|
||||
* emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
|
||||
|
||||
2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Spelling fixes.
|
||||
|
@ -272,7 +278,7 @@
|
|||
2014-01-06 Leo Liu <sdl.web@gmail.com>
|
||||
|
||||
* dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
|
||||
to avoid shadowning global key. (Bug#16354)
|
||||
to avoid shadowing global key. (Bug#16354)
|
||||
|
||||
2014-01-06 Daniel Colascione <dancol@dancol.org>
|
||||
|
||||
|
|
|
@ -241,7 +241,7 @@ to nil: a pipe using `zcat' or `gunzip -c' will be used."
|
|||
|
||||
;;; KEY BINDINGS.
|
||||
|
||||
(define-key dired-mode-map "\C-c\M-o" 'dired-omit-mode)
|
||||
(define-key dired-mode-map "\C-x\M-o" 'dired-omit-mode)
|
||||
(define-key dired-mode-map "*O" 'dired-mark-omitted)
|
||||
(define-key dired-mode-map "\M-(" 'dired-mark-sexp)
|
||||
(define-key dired-mode-map "*(" 'dired-mark-sexp)
|
||||
|
|
|
@ -187,7 +187,7 @@ expression point is on."
|
|||
(when eldoc-print-after-edit
|
||||
(setq-local eldoc-message-commands (eldoc-edit-message-commands)))
|
||||
(add-hook 'post-command-hook 'eldoc-schedule-timer nil t)
|
||||
(add-hook 'pre-command-hook 'eldoc-pre-command-refresh-echo-area t))
|
||||
(add-hook 'pre-command-hook 'eldoc-pre-command-refresh-echo-area nil t))
|
||||
(kill-local-variable 'eldoc-message-commands)
|
||||
(remove-hook 'post-command-hook 'eldoc-schedule-timer t)
|
||||
(remove-hook 'pre-command-hook 'eldoc-pre-command-refresh-echo-area t)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue