From 29cea2f87c411dd749a4e0b38cfb213a957afc1e Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Fri, 28 Jul 2017 17:21:06 +0100 Subject: [PATCH] Emacs: Echo keystroke prefix quicker --- .emacs.d/lisp/main.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/lisp/main.el b/.emacs.d/lisp/main.el index 5b8db4c7..ca75df49 100644 --- a/.emacs.d/lisp/main.el +++ b/.emacs.d/lisp/main.el @@ -12,6 +12,9 @@ ;;; Force on using the minibuffer instead. (setq use-dialog-box nil) +;;; Timeout before echoing the prefix of an unfinished keystroke. +(setq echo-keystrokes 0.5) + ;;; Remember last cursor position. (require 'saveplace) (setq save-place-file (concat emacs-cache-folder "saveplace"))