This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-19
Channels
- # announcements (37)
- # aws (6)
- # babashka (12)
- # babashka-sci-dev (16)
- # beginners (83)
- # biff (10)
- # cider (14)
- # cljdoc (26)
- # cljs-dev (20)
- # clojure (123)
- # clojure-czech (9)
- # clojure-europe (26)
- # clojure-nl (4)
- # clojure-norway (20)
- # clojure-spec (7)
- # clojure-uk (6)
- # clojured (14)
- # clojurescript (28)
- # cursive (5)
- # datalevin (8)
- # datomic (3)
- # duct (6)
- # emacs (26)
- # events (2)
- # fulcro (7)
- # gratitude (1)
- # holy-lambda (19)
- # integrant (1)
- # jobs (2)
- # leiningen (8)
- # lsp (7)
- # nyc (1)
- # pathom (70)
- # re-frame (8)
- # reagent (15)
- # releases (1)
- # sci (8)
- # shadow-cljs (117)
- # testing (5)
- # tools-deps (11)
- # vim (5)
this is cider-adjacent, but i’m trying to get projectile-toggle-between-implementation-and-test
to work with a deps.edn
project. I get the message No matching test file found for project type 'clojure-cli'
when trying to toggle to a test file that hasn’t been created. I have (setq projectile-create-missing-test-files t)
in my config. Does anyone know how to fix this?
if I create the file then it toggles fine
looks like this is a known issue: https://github.com/bbatsov/projectile/issues/1765
@nonrecursive Yeah it was a recent regression that I had forgotten about. Clearly the past two months weren't very productive for me. The fix is merged now. Thanks for reminding me about it!
@bozhidar Thanks a lot for everything you do, and also on Twitter, you are a great inspiration, especially with what is happening in the last two months at your borders 🙂
hello, I'm just starting with Cider, most of things going great! one thing that I'm missing from Cursive is that in Cursive, when I ask to eval to top level form from inside a (comment ...)
it understands I don't want the comment, but the form below it, is there a way to have to eval in Cider using this kind of constraint?
on Google I found something about cider-eval-toplevel-inside-comment-form
(at https://github.com/clojure-emacs/cider/issues/2375), but I can't find this command
also, here’s a lovely function to make a comment block for you
(defun personal/insert-comment ()
(interactive)
(end-of-defun)
(insert "\n")
(insert "(comment\n )\n")
(clojure-backward-logical-sexp)
(forward-char 1)
(clojure-forward-logical-sexp)
(insert "\n")
(indent-according-to-mode))
awesome! the setq
did the trick 😄
what that function does? I'm new on emacs but I think I used to use a snippet for something similar of what this function is doing
so imagine you are working inside the body of a function. I hit C-M-i
and that makes a new comment
form under the function i was working in so i can start typing a comment block
gonna try, thanks!