Fork me on GitHub
#cursive
<
2016-10-20
>
kenny05:10:01

Refactoring an alias in :require doesn't also change all qualified keywords 😞

(require [myns.foo :as something])
::something/a-keyword
refactor something to something2
(require [myns.foo :as something2])
::something/a-keyword ;; <-- keyword not changed

puzzler06:10:01

Does a local REPL configuration get its JVM args from the "Edit Configuration" form entry for JVM args, or from the leiningen profile?

cfleming10:10:58

@puzzler Both. It will respect JVM args in your project.clj, and if you add any in the config they will be added too.

cfleming10:10:25

However that’s only additive, there’s nothing clever trying to remove duplicates or anything like that.