Only trigger property indent correction in plists

Before

  (defcli! :main
           ()
           ...)

After

  (defcli! :main
    ()
    ...)
This commit is contained in:
Henrik Lissner 2020-05-05 03:31:43 -04:00
parent 35591cfc4c
commit cacc4a0ff7
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -264,6 +264,7 @@ https://emacs.stackexchange.com/questions/10230/how-to-indent-keywords-aligned"
(save-excursion
(goto-char orig-point)
(and (eq (char-after) ?:)
(eq (char-before) ?\()
(setq target (current-column)))))
(save-excursion
(move-to-column target t)