Add "Enable disabled commands" section

Enable narrow functions cause they're really handy.
This commit is contained in:
Laurens Miers 2024-09-22 11:26:12 +02:00
parent 091b5fbda2
commit 6f306b4ea5

View file

@ -391,6 +391,16 @@ Look into customizing the 'ispell' group.
(delete-selection-mode t) (delete-selection-mode t)
#+END_SRC #+END_SRC
** Enable disabled commands
Some commands are disabled to protect the user.
Narrow-region/page is a really handy feature, enable it:
#+BEGIN_SRC emacs-lisp
(put 'narrow-to-page 'disabled nil)
(put 'narrow-to-region 'disabled nil)
#+END_SRC
* Dired * Dired
#+begin_src emacs-lisp #+begin_src emacs-lisp