-
-
Notifications
You must be signed in to change notification settings - Fork 248
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
Treat , as a non-logical sexpr character #373
Conversation
This causes clojure-forward-logical-sexp to skip over , when for instance computing vertical alignments. Fixes clojure-emacs#367
Well, I guess that was easier than expected. 😄 |
And thanks a ton btw! |
Hmm. Now that I think about it... The current code probably assumes that non-logical sexps come before the logical sexp, which is not true for commas. |
Merged! I also added a bit of code so that |
Did you test this at all for yourself? I'm concerned that it has fairly significant limitations from mucking this afternoon 😞 |
I did, but I also changed the code a bit, which might have overcome the limitations. Have you tried the version on master? |
No I've been in hospital all day. I'll check it out tomorrow. |
👍 Let me know when you get a chance. |
This causes clojure-forward-logical-sexp to skip over , when for
instance computing vertical alignments.
Fixes #367