handling comments
justbur opened this issue · comments
Justin Burkett commented
Hi again,
I was wondering if there was a way to intelligently deal with comments. Here's an example
(let (a)
;; a is ...
(setq a 1))
Try dd
on the last line. The closing paren moves into the comment and now we have a problem and need a manual fix. Is it possible to jump the comment or put the closing paren before the comment? Something that would keep the expression valid.
Justin Burkett commented
I would be fine with this result too
(let (a)
;; a is ...
)
luxbock commented
Turned out to be a rather easy fix :)
Justin Burkett commented
Thanks! I thought it might be