File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -301,9 +301,11 @@ is trying load some arbitrary ns."
301
301
(when (string/starts-with? repl-ns " cljs.repl." )
302
302
(subs repl-ns (count " cljs.repl." )))))
303
303
304
- (defn- fast-initial-prompt? [repl-env inits]
304
+ (defn- fast-initial-prompt? [repl-env options inits]
305
305
(boolean
306
306
(and (empty? inits)
307
+ (not (:verbose options))
308
+ (not (:repl-verbose options))
307
309
(contains? #{" node" } (repl-name repl-env)))))
308
310
309
311
(defn- repl-opt
@@ -322,7 +324,7 @@ present"
322
324
(repl/repl* renv
323
325
(assoc (dissoc-entry-point-opts opts)
324
326
::repl/fast-initial-prompt?
325
- (or (fast-initial-prompt? repl-env inits)
327
+ (or (fast-initial-prompt? repl-env options inits)
326
328
(::repl/fast-initial-prompt? (repl/repl-options renv)))
327
329
328
330
:quit-prompt
You can’t perform that action at this time.
0 commit comments