diff options
author | Alan Pearce | 2014-09-06 12:54:07 +0100 |
---|---|---|
committer | Alan Pearce | 2014-09-06 12:54:07 +0100 |
commit | 7a9efc6c9276733b0496725725448445e4420f82 (patch) | |
tree | cab1e5b9d0d423213ae6d5206f60d28062881ee8 /tag-emacs | |
parent | 888dc9c2c1ea5a700ed0d8cca3ec1ad8d67db8cd (diff) | |
download | nixfiles-7a9efc6c9276733b0496725725448445e4420f82.tar.lz nixfiles-7a9efc6c9276733b0496725725448445e4420f82.tar.zst nixfiles-7a9efc6c9276733b0496725725448445e4420f82.zip |
Emacs: Fix startup error from comint keybind
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 8e2d0127..e679f74d 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)) |