From 5c5d824ff4914f89da39c4784857fb0e470dadca Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Thu, 11 Dec 2014 13:56:53 +0900 Subject: [PATCH] emacs.el: Use C-n and C-p in minibuffer to exploring histories --- emacs.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs.el b/emacs.el index 4926dcd..6ffb9ee 100644 --- a/emacs.el +++ b/emacs.el @@ -501,6 +501,9 @@ found, otherwise returns nil." (define-key minibuffer-local-map (kbd "C-u") (lambda () (interactive) (delete-region (point-at-bol) (point)))) +;; I dont know these bindings are good +(define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p")) +(define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n")) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; letters, font-lock mode and fonts