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
Clojure uses reader macros like @ and # before forms. I think it makes sense to include macro characters as a part of the COMPOUND FORM to make it more consistent with ELEMENT behavior
In the current implementation ( | denotes cursor, <> denotes vim command):
@(re-|frame/subscribe [::the-sub])
<daf>
|@
;; but
(@a|bc de fg)
<dae>
(|de fg)
After my suggestion:
@(re-|frame/subscribe [::the-sub])
<daf>
|
;; but
(@a|bc de fg)
<dae>
(|de fg)
The text was updated successfully, but these errors were encountered:
Clojure uses reader macros like @ and # before forms. I think it makes sense to include macro characters as a part of the COMPOUND FORM to make it more consistent with ELEMENT behavior
In the current implementation (
|
denotes cursor,<>
denotes vim command):After my suggestion:
The text was updated successfully, but these errors were encountered: