emacs/undo: add "disabling persistent undo history" to readme
This commit is contained in:
parent
c0d208965d
commit
3ed98a41bb
1 changed files with 17 additions and 3 deletions
|
@ -12,10 +12,12 @@
|
||||||
- [[#prerequisites][Prerequisites]]
|
- [[#prerequisites][Prerequisites]]
|
||||||
- [[#features][Features]]
|
- [[#features][Features]]
|
||||||
- [[#configuration][Configuration]]
|
- [[#configuration][Configuration]]
|
||||||
|
- [[#disabling-persistent-undo-history][Disabling persistent undo history]]
|
||||||
- [[#troubleshooting][Troubleshooting]]
|
- [[#troubleshooting][Troubleshooting]]
|
||||||
|
|
||||||
* Description
|
* Description
|
||||||
This module augments Emacs' built-in undo system to be more intuitive.
|
This module augments Emacs' built-in undo system to be more intuitive and to
|
||||||
|
persist across Emacs sessions.
|
||||||
|
|
||||||
** Maintainers
|
** Maintainers
|
||||||
This module has no dedicated maintainers.
|
This module has no dedicated maintainers.
|
||||||
|
@ -47,8 +49,20 @@ This module has no prereqisites.
|
||||||
* TODO Features
|
* TODO Features
|
||||||
# An in-depth list of features, how to use them, and their dependencies.
|
# An in-depth list of features, how to use them, and their dependencies.
|
||||||
|
|
||||||
* TODO Configuration
|
* Configuration
|
||||||
# How to configure this module, including common problems and how to address them.
|
** Disabling persistent undo history
|
||||||
|
+ If you are using =+tree=:
|
||||||
|
|
||||||
|
#+BEGIN_SRC elisp
|
||||||
|
(after! undo-tree
|
||||||
|
(setq undo-tree-auto-save-history nil))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
+ If you aren't:
|
||||||
|
|
||||||
|
#+BEGIN_SRC elisp
|
||||||
|
(remove-hook 'undo-fu-mode-hook #'global-undo-fu-session-mode)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
* TODO Troubleshooting
|
* TODO Troubleshooting
|
||||||
# Common issues and their solution, or places to look for help.
|
# Common issues and their solution, or places to look for help.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue