We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I found aggressive-indent-mode has unbalanced enable/disable hook configuration.
aggressive-indent-mode
There are any special meanings?
aggressive-indent-mode/aggressive-indent.el
Lines 510 to 519 in c28246b
(if aggressive-indent-mode ;; {{hide something}} (add-hook 'after-change-functions #'aggressive-indent--keep-track-of-changes nil 'local) (add-hook 'after-revert-hook #'aggressive-indent--clear-change-list nil 'local) (add-hook 'before-save-hook #'aggressive-indent--proccess-changed-list-and-indent nil 'local)) ;; Clean the hooks (when (timerp aggressive-indent--idle-timer) (cancel-timer aggressive-indent--idle-timer)) (remove-hook 'after-change-functions #'aggressive-indent--keep-track-of-changes 'local) (remove-hook 'after-revert-hook #'aggressive-indent--clear-change-list 'local) (remove-hook 'before-save-hook #'aggressive-indent--proccess-changed-list-and-indent 'local) (remove-hook 'post-command-hook #'aggressive-indent--softly-indent-defun 'local))
Emacs: GNU Emacs 26.3 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.12) of 2019-10-26 Aggressive-indent: 20190828.1828
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Hi!
I found
aggressive-indent-mode
has unbalanced enable/disable hook configuration.There are any special meanings?
aggressive-indent-mode/aggressive-indent.el
Lines 510 to 519 in c28246b
Emacs info
The text was updated successfully, but these errors were encountered: