This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-12-24
Channels
@clojuregeek in-ns
creates the namespace if does not exist afaik
Should not be hard to write a safe version as the-ns
throws exception if the namespace does not exist
hm.. with a bit of testing I can see that the reloaded workflow’s refresh
can interfere with AST generation in refactor-nrepl
as if you run refresh
or reset
it can break AST generation as refresh
actively unloads
some namespaces
recorded an issue for this: https://github.com/clojure-emacs/refactor-nrepl/issues/134 however if there is no other problem (big if) I don’t see much to be fixed here as the missing ASTs for certain namespaces will be generated when some refactor feature is run which needs them.
@benedek: cool, thanks!