Get rid of weird hack, comint-delchar-or-maybe-eof

This fixes #914.
This commit is contained in:
Keshav Kini 2015-06-24 09:45:08 -07:00 committed by syl20bnr
parent db57fb17a7
commit 8e97a74026

View file

@ -168,6 +168,12 @@ Can be installed with `brew install trash'."
;; Single space between sentences is more widespread than double
(setq-default sentence-end-double-space nil)
;; The C-d rebinding that most shell-like buffers inherit from
;; comint-mode assumes non-evil configuration with its
;; `comint-delchar-or-maybe-eof' function, so we disable it
(eval-after-load 'comint
'(define-key comint-mode-map (kbd "C-d") nil))
;; ---------------------------------------------------------------------------
;; UI
;; ---------------------------------------------------------------------------