This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-10-30
Channels
- # announcements (1)
- # babashka (15)
- # calva (3)
- # cider (1)
- # clj-kondo (16)
- # clj-on-windows (1)
- # cljfx (1)
- # clojure (25)
- # clojure-europe (6)
- # clojure-spec (15)
- # cursive (13)
- # emacs (11)
- # fulcro (2)
- # humbleui (7)
- # introduce-yourself (1)
- # jackdaw (1)
- # off-topic (10)
- # pathom (5)
- # portal (3)
- # re-frame (7)
- # reagent (12)
- # releases (1)
- # shadow-cljs (8)
- # tools-build (18)
- # web-security (10)
So, dear Calva friends, I decided to https://github.com/BetterThanTomorrow/calva/releases/tag/v2.0.312, without further testing: • Fix: https://github.com/BetterThanTomorrow/calva/issues/1826 • Fix: https://github.com/BetterThanTomorrow/calva/issues/998 The testing I and others did perform did not reveal any problems, and the change isn't of a nature that would stop anyones workflow. That said, there could be some regression related to printing to the Output/REPL window, so please be alert and report if you notice anything. Thanks! ❤️ 🙏
I've created an issue where we can report on any regressions we find regarding this. https://github.com/BetterThanTomorrow/calva/issues/1927 I've found one so far.
I was getting an issue where whenever I started a REPL, it would start printing outputs on the same line as the input. It would usually eventually stop. But I tried reproducing this again to see if I could figure out what kinds of things would make it stop printing on the same line, and I couldn't reproduce it. This is copied directly from a newly started calva repl with the issue, where the issue went away after an in-ns call:
; Jacking in...
; Starting Jack-in Terminal: clojure -Sdeps '{:deps {nrepl/nrepl {:mvn/version,"1.0.0"},cider/cider-nrepl {:mvn/version,"0.28.5"}}}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
; Hooking up nREPL sessions...
; Connected session: clj
; TIPS:
; - You can edit the contents here. Use it as a REPL if you like.
; - `alt+enter` evaluates the current top level form.
; - `ctrl+enter` evaluates the current form.
; - `alt+up` and `alt+down` traverse up and down the REPL command history
; when the cursor is after the last contents at the prompt
; - Clojure lines in stack traces are peekable and clickable.
clj꞉user꞉>
; Jack-in done.
clj꞉user꞉>
(println "hello") hello
nil
clj꞉user꞉>
(println "hello") hello
nil
clj꞉user꞉>
(in-ns 'user) #namespace[user]
clj꞉user꞉>
(println "hello")
hello
nil
clj꞉user꞉>
I've created an issue where we can report on any regressions we find regarding this. https://github.com/BetterThanTomorrow/calva/issues/1927 I've found one so far.