This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-06-19
Channels
- # ai (4)
- # announcements (1)
- # babashka (6)
- # beginners (31)
- # biff (1)
- # calva (11)
- # cider (9)
- # clerk (6)
- # clojure (40)
- # clojure-europe (49)
- # clojure-nl (1)
- # clojure-norway (30)
- # clojurescript (17)
- # conjure (1)
- # core-async (2)
- # datalevin (28)
- # emacs (1)
- # events (4)
- # fulcro (7)
- # gratitude (1)
- # guix (4)
- # hyperfiddle (19)
- # juxt (10)
- # luminus (4)
- # malli (4)
- # missionary (11)
- # nbb (3)
- # pedestal (7)
- # reagent (27)
- # reitit (2)
- # releases (1)
- # shadow-cljs (32)
- # tools-deps (6)
- # xtdb (5)
I'm trying to eval a line from the buffer but no keybinding seems to work. I'm in doom emacs, Cider is connected to my logseq plugin and I am able to send a command that works when I type it. But when I'm in the .cljs buffer, I haven't found anything that can eval that same command. In vim iced, I could do that with <leader> e e.
Source file (.cljs)
Is it just a keybindings issue? Check if manually calling M-x cider-eval-defun
works and if cider-mode
is enabled
My cursor is on the '(' character. if I yank ( y y ) and paste in the window below, it works. But if I do M-x , cider-eval-defun-at-point, it does nothing. I also tried cider-mode (disable then enable), it doesn't change anything
I also have this warning which doesn't seem to correspond to anything when I click on "More Information", plus I don't see why the connect would work and execute command but would not work in the buffer WARNING: CIDER requires cider-nrepl to be fully functional. Some features will not be available without it!
So I suspect it is not related to my problem
THere's a command (that I already forgot, need to find it back) that when I do it in the .cljs file, it says I'm not connected to a REPL, but I launched cider-connect-cljs from there and the repl under works (the command says it is connected in that window). What am I doing wrong?