File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
- ## Added
4
-
5
3
## Fixed
6
4
7
- ## Changed
5
+ - Fix the ` --portal ` / ` :portal ` option
8
6
9
7
# 0.25.120-alpha (2024-01-22 / cd0da82)
10
8
@@ -203,4 +201,4 @@ Initial release
203
201
- lambdaisland.classpath integration
204
202
- Support for cider-nrepl, refactor-nrepl
205
203
- Basic support for shadow-cljs cljs nREPL-base REPL
206
- - Auto-connect for Emacs
204
+ - Auto-connect for Emacs
Original file line number Diff line number Diff line change 202
202
treated like an atom." })
203
203
(fn portal
204
204
[]
205
- (let [p ((requiring-resolve 'portal.api/open) @user/portal-instance)]
206
- (reset! user/portal-instance p)
205
+ (let [p ((requiring-resolve 'portal.api/open) @@( resolve ' user/portal-instance) )]
206
+ (reset! @( resolve ' user/portal-instance) p)
207
207
(add-tap (requiring-resolve 'portal.api/submit))
208
208
p)))))))))
209
209
503
503
(.directory working-dir))
504
504
_ (.putAll (.environment proc-builder) (or env (:env ctx)))
505
505
color (mod (hash (or prefix (first cmd))) 8 )
506
- prefix (ansi-fg (+ 30 color) (str " [ " ( or prefix (first cmd)) " ] " ) )
506
+ prefix (str " [ " ( ansi-fg (+ 30 color) (or prefix (first cmd))) " ] " )
507
507
process (pipe-process-output (.start proc-builder) prefix)
508
508
ctx (update ctx :processes (fnil conj []) process)]
509
509
(apply println (str prefix " $" ) (map shellquote cmd))
You can’t perform that action at this time.
0 commit comments