summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2014-09-06 12:54:07 +0100
committerAlan Pearce2014-09-06 12:54:07 +0100
commit7a9efc6c9276733b0496725725448445e4420f82 (patch)
treecab1e5b9d0d423213ae6d5206f60d28062881ee8
parent888dc9c2c1ea5a700ed0d8cca3ec1ad8d67db8cd (diff)
downloaddotfiles-7a9efc6c9276733b0496725725448445e4420f82.tar.lz
dotfiles-7a9efc6c9276733b0496725725448445e4420f82.tar.zst
dotfiles-7a9efc6c9276733b0496725725448445e4420f82.zip
Emacs: Fix startup error from comint keybind
-rw-r--r--tag-emacs/emacs.d/init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el
index 8e2d012..e679f74 100644
--- a/tag-emacs/emacs.d/init.el
+++ b/tag-emacs/emacs.d/init.el
@@ -962,6 +962,10 @@ mouse-1: Display Line and Column Mode Menu"))))))
   :config (define-key shell-mode-map
             (kbd "C-d") 'comint-delchar-or-eof-or-kill-buffer))
 
+(req-package comint
+  :defer t
+  :config (bind-key "C-c C-l" #'helm-comint-input-ring comint-mode-map))
+
 (req-package multi-term
   :if (not (eq system-type 'windows-nt))
   :bind ("C-`" . multi-term-dedicated-toggle))