ranger.el
ranger.el copied to clipboard
overwrites basic emacs keys
Installed from melpa (version 20170817.1557). The wiki talks about C-u changing the behaviour of commands dd and yy etc. But in the melpa version, ranger overwrites lots of C- keybindings that are supposed to be reserved for emacs and basic to emacs usage. Including :
- C-u (universal prefix)
- C-h (help)
For now I added the following to my init file as a workaround, but please check :
(define-key ranger-mode-map (kbd "C-u") nil)
(define-key ranger-mode-map (kbd "C-h") nil)
Thanks for the suggestion. I set them to the original ranger defaults, but will think again about whether we want to keep them as he defaults.
Changing C-h (help) does not permit the user to find the use of a function or a key. Very incomfortable because it works with all Emacs package in the world (I think ;-) and it's a real way of learning how to use a package. The basics are the basics, they would not be changed IMHO.