Emacs: Fix startup error from eshell keybind Really weird that I needed to bind the key inside a hook, anything else seemed to get evaluated before eshell was loaded
Alan Pearce alan@alanpearce.co.uk
Sat, 06 Sep 2014 12:54:29 +0100
1 files changed, 2 insertions(+), 0 deletions(-)
jump to
M tag-emacs/emacs.d/init.el → tag-emacs/emacs.d/init.el
@@ -942,6 +942,8 @@ (req-package eshell :bind ("C-c s" . eshell) :config (progn (setq eshell-directory-name "~/.emacs.d/eshell") + (add-hook 'eshell-load-hook (lambda () + (bind-key "C-c C-l" #'helm-eshell-history eshell-mode-map))) (req-package em-smart :init (progn (setq eshell-where-to-jump 'begin