You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anyone else have the experience that when editing elisp, aggressive-indent will erroneously indent docstrings unrelated to the editing context like this:
(defunfunction-i-am-writing ()
;; copy paste edit incomplete fragments that cause indentation below point
(let ((x "x") (
)
(defunfoo ()
"This is a function called foo.It accepts no parameters."
)
...edit code allowing aggressive-indent to do its thing...and BAM!...flymake complains about new issues such as indented docstrings...
(defunfoo ()
"This is a function called foo. It accepts no parameters."; <- this is erroneously indented
)
In emacs-lisp-mode, I do have
(setq-local aggressive-indent-comments-too nil)
not that I'm sure this does anything.
The text was updated successfully, but these errors were encountered:
Anyone else have the experience that when editing elisp, aggressive-indent will erroneously indent docstrings unrelated to the editing context like this:
...edit code allowing aggressive-indent to do its thing...and BAM!...flymake complains about new issues such as indented docstrings...
In
emacs-lisp-mode
, I do havenot that I'm sure this does anything.
The text was updated successfully, but these errors were encountered: