diff options
| author | Artur Malabarba <453029+Malabarba@users.noreply.github.com> | 2023-01-12 10:00:30 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-12 10:00:30 -0300 |
| commit | a437a45868f94b77362c6b913c5ee8e67b273c42 (patch) | |
| tree | c742d680008b3d3d1ebffa7cc481012480dc0460 | |
| parent | f376cdc25de5c0f8c330f1e053557d95ca47a540 (diff) | |
| parent | b59d928060d7aeac55d181711fa7725b695e8bbc (diff) | |
Merge pull request #145 from liuchong/patch-1externals/aggressive-indent
Fix #101 - Protect command undo-tree-visualize
| -rw-r--r-- | aggressive-indent.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aggressive-indent.el b/aggressive-indent.el index 9a57206..ad81cc6 100644 --- a/aggressive-indent.el +++ b/aggressive-indent.el @@ -129,7 +129,7 @@ active. If the minor mode is turned on with the local command, :type '(repeat symbol) :package-version '(aggressive-indent . "1.8.4")) -(defcustom aggressive-indent-protected-commands '(undo undo-tree-undo undo-tree-redo whitespace-cleanup) +(defcustom aggressive-indent-protected-commands '(undo undo-tree-undo undo-tree-redo undo-tree-visualize undo-tree-visualize-undo undo-tree-visualize-redo whitespace-cleanup) "Commands after which indentation will NOT be performed. Aggressive indentation could break things like `undo' by locking the user in a loop, so this variable is used to control which |
