We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It moves keys in pairs (kv) as in plain maps.
For example I can’t move b to third position in place of c (alt+down)
b
c
(let [{:keys [a |b c d]} my-map] ;; ....)
currently it changes to this:
(let [{:keys [c d a |b]} my-map] ;; ....)
but should:
(let [{:keys [a c |b d]} my-map] ;; ....)
The text was updated successfully, but these errors were encountered:
slack discussion link: https://clojurians.slack.com/archives/CBE668G4R/p1653202750944599
Sorry, something went wrong.
And it doesn't happen with function args
(defn foo [{:keys [c |d a b]}] nil)
Here I can move d behind a
d
a
fix BetterThanTomorrow#1737
cdf3db1
20af843
No branches or pull requests
It moves keys in pairs (kv) as in plain maps.
For example I can’t move
b
to third position in place ofc
(alt+down)currently it changes to this:
but should:
The text was updated successfully, but these errors were encountered: