We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
require
in-ns
1 parent 0449bf8 commit b445a5dCopy full SHA for b445a5d
cider-repl.el
@@ -1207,6 +1207,8 @@ command will prompt for the name of the namespace to switch to."
1207
(user-error "No namespace selected"))
1208
(cider-map-repls :auto
1209
(lambda (connection)
1210
+ ;; NOTE: `require' and `in-ns' are special forms in ClojureScript.
1211
+ ;; That's why we eval them separately instead of combining them with `do'.
1212
(when cider-repl-require-ns-on-set
1213
(cider-nrepl-sync-request:eval (format "(require '%s)" ns) connection))
1214
(cider-nrepl-request:eval (format "(in-ns '%s)" ns)
0 commit comments