Skip to content
New issue

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

Problem with formatting setq and setq-default #22

Open
dan-forsberg opened this issue Apr 21, 2016 · 1 comment
Open

Problem with formatting setq and setq-default #22

dan-forsberg opened this issue Apr 21, 2016 · 1 comment

Comments

@dan-forsberg
Copy link

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

@tuhdo
Copy link
Owner

tuhdo commented Apr 21, 2016

Thanks for the report. I will look into it soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants