I want to enable all disabled commands in Emacs such as downcase-region
- that is, when invoked they do not ask confirmation from user. Unfortunately section "48.3.11 Disabling Commands" of Emacs manual says nothing on enabling all disabled commands permanently.
Emacs version: 24.0.95.1
As written in EmacsWiki, you can add (setq disabled-command-function nil)
to your init file, to enable all disabled commands:
Copy such elisp into your ~/.emacs
:
(put 'set-goal-column 'disabled nil)
(put 'narrow-to-region 'disabled nil)
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
(put 'scroll-left 'disabled nil)
(put 'erase-buffer 'disabled nil)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With