Fork me on GitHub
#cursive
<
2018-01-11
>
manderson01:01:26

šŸ‘ Thanks!

grav08:01:08

Is it possible to get Cursive to remove-ns before reloading an ns into the repl?

cfleming08:01:25

@grav No, but it should be.

cfleming08:01:40

What Iā€™m less sure of is if that should also happen for other files that get transitively loaded - I guess so.

grav08:01:48

Yeah. Maybe a pragmatic first-shot would be a unload all namespaces, at least saving me from having to restart the repl feature šŸ™‚

mbjarland17:01:29

is it possible to align the second value in cond pairs in cursive code formatting?

mbjarland17:01:14

(cond
    something something-other
    something-long should-align)
-->
(cond
    something      something-other
    something-long should-align)

timgilbert20:01:11

There a few cases where I'd like the above, notably (case) statements and also longer assoc statements like

(assoc my-map :some/key 123
              :much-longer/key-name 456)
-->
(assoc my-map :some/key             123
              :much-longer/key-name 456)