diff --git a/README.org b/README.org index 5b2b17b..a95139b 100644 --- a/README.org +++ b/README.org @@ -1160,6 +1160,7 @@ It's somtimes desirable to have customization that takes effect during Emacs sta <> <> <> +<> #+END_SRC ** Native Comp @@ -1234,6 +1235,15 @@ Define some methods for interaction between [[https://gnu.org/software/emacs/][G (apply #'call-process `(,(car command-parts) nil 0 nil ,@(cdr command-parts))))) #+END_SRC +** Improved prompts + +By default Emacs will ask you to enter 'Yes' or 'No' instead of 'Y' or 'N'. This is a relatively conservative design decision, based on the fact that certain prompts may be important enough to warrant typing three characters. + +#+NAME: emacs-improved-prompts +#+BEGIN_SRC emacs-lisp +(defalias 'yes-or-no-p 'y-or-n-p) +#+END_SRC + ** Nix Mode #+NAME: emacs-nix-mode-extras