This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-29
Channels
- # adventofcode (9)
- # announcements (2)
- # aws (78)
- # babashka (55)
- # beginners (97)
- # biff (9)
- # calva (11)
- # cherry (2)
- # cider (8)
- # clerk (7)
- # clj-kondo (6)
- # clj-on-windows (4)
- # clojure (213)
- # clojure-austin (6)
- # clojure-europe (63)
- # clojure-nl (1)
- # clojure-norway (5)
- # clojure-spec (10)
- # clojure-uk (1)
- # clojurescript (14)
- # clr (2)
- # community-development (3)
- # conjure (14)
- # datomic (2)
- # deps-new (5)
- # dev-tooling (10)
- # editors (3)
- # emacs (3)
- # etaoin (19)
- # events (4)
- # fulcro (71)
- # holy-lambda (20)
- # java (3)
- # jobs (2)
- # leiningen (4)
- # lsp (24)
- # malli (15)
- # membrane (107)
- # music (1)
- # off-topic (29)
- # pedestal (4)
- # polylith (1)
- # portal (2)
- # rdf (5)
- # releases (7)
- # scittle (5)
- # shadow-cljs (8)
- # tools-build (15)
- # tools-deps (6)
- # xtdb (13)
Is it possible to not show the popup window if the log is open in the current editor tab? Is there a config var for it?
It won't show the HUD if you can see the bottom of the log right now, or at least, that's what should happen. The behaviour you describe doesn't exist yet but could be added as another option.
Hey team, bit of a noob question. For folks who manually start an nrepl server, how do you get conjure to know about it? Do you just write (spit port ".nrepl-port")
?
Here’s how I do it right now:
(ns instant.nrepl
(:require [nrepl.server :refer [start-server stop-server]]
[instant.config :as config]
[cider.nrepl :refer [cider-nrepl-handler]]
[clojure.tools.logging :as log]))
(defn start []
(let [port (config/get-nrepl-port)]
(log/infof "Starting nrepl on port = %s" port)
(def server (start-server :port port :handler cider-nrepl-handler))
(spit ".nrepl-port" port)))
The nicer nrepl implementations clean up after themselves too, you could do that too if you want
If you're interested, here is what I do https://github.com/dharrigan/depsconfig/blob/master/libs/local.dev/src/local/dev/main.clj
Excited to see the syntax highlighting — thanks @U11EL3P9U! will look more