Emacs: Fix M-q binding
Alan Pearce alan.pearce@spotcap.com
Tue, 10 Nov 2015 15:37:03 +0100
1 files changed, 3 insertions(+), 3 deletions(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -2169,9 +2169,9 @@ #+BEGIN_SRC emacs-lisp (req-package esh-buf-stack :require eshell :config (progn - (bind-key "M-q" #'eshell-push-command eshell-mode-map)) - :init (progn - (setup-eshell-buf-stack))) + (setup-eshell-buf-stack) + (add-hook 'eshell-load-hook (lambda () + (bind-key "M-q" #'eshell-push-command eshell-mode-map))))) #+END_SRC *** Shells