You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When capturing tail on a top level form, capture will place the bracket at the end of subsequent comments. Similar behavior can be seen with emit-tail. This seems surprising to me as it unbalances forms. Capture and emit should probably ignore comments altogether and act on the next real element.
Given the following with the cursor on foo.
(foo) ;comment-a
bar
;; comment-b
zap
Capture tail twice should produce
(foo;comment-a
bar
;; comment-b
zap)
The text was updated successfully, but these errors were encountered:
When capturing tail on a top level form, capture will place the bracket at the end of subsequent comments. Similar behavior can be seen with emit-tail. This seems surprising to me as it unbalances forms. Capture and emit should probably ignore comments altogether and act on the next real element.
Given the following with the cursor on
foo
.Capture tail twice should produce
The text was updated successfully, but these errors were encountered: