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
- rewritten to not use internal `global-find-by-node`
(contributes to #256)
- now takes type of left sequence (closes#321)
- no longer removes comments between strings when joining 2
strings (closes#351)
Version
1.1.49
Platform
All
Symptom
paredit/join is deleting comments when they lie between the two strings to be joined.
Reproduction
Actual behavior
;; => ["\"Hello World\"" "(\"Hello World\")"]
Thoughts
Option 1: no-op because we don't really have 2 strings next to each other
Option 2: push out comment like so:
"(\"Hello World\" ;; comment\n)"
Joining by sequence does allow for comments between the seqs and preserves the comment...
So I think I'll go for option 2.
Expected behavior
;; => ["\"Hello World\"" "(\"Hello World\" ;; comment\n)"]
Action
I'll handle.
The text was updated successfully, but these errors were encountered: