is there a convenient way to reorder function params in cursive's structural mode?
@stammi: There’s move form up/down, but it’s not a refactoring - it won’t affect the usages of the function
@stammi: https://github.com/cursiveclojure/cursive/issues/927
@cfleming @danielcompton what I had in mind is the function call. E.g turn (str a "-" b) into (str b "-" a) without cut and paste.
@stammi: You can use move form up/down for that, it doesn’t require a refactoring
Thanks @cfleming I will try that
yep thats what I wanted