semantic-refactor
semantic-refactor copied to clipboard
Problem with formatting setq and setq-default
I'm not sure how to describe this in words, so I'll just show my problem.
Original code
(setq-default some-variable-with-long-name t
some-other-variable
nil
some-variable 3)
(setq abc-variable nil
def-variable t)
Expected result after srefactor-lisp-format-buffer
(setq-default some-variable-with-long-name t
some-other-variable nil
some-variable 3)
(setq abc-variable nil
def-variable t)
Actual result
(setq-default some-variable-with-long-name
t some-other-variable nil some-variable 3)
(setq abc-variable nil def-variable
t)
fill-column is 80
Thanks for the report. I will look into it soon.