I have this in my .emacsrc
(define-key global-map "\C-h" 'backward-delete-char) ;;previously help
however, when I do an I-search and hit C-h
to delete a char, emacs uses the default binding and tries to open the help, when I cancel the search with C-g
, it then executes the backward-delete-char in the document I started the I-search from.
EDIT: This makes me wonder why C-h
is again mapped to help
inside the minibuffer. What is overriding my global-map definition and why?