This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-07-18
Channels
- # aleph (7)
- # announcements (11)
- # beginners (186)
- # calva (17)
- # cider (26)
- # clj-kondo (4)
- # cljdoc (12)
- # cljs-dev (3)
- # clojars (1)
- # clojure (105)
- # clojure-berlin (1)
- # clojure-chicago (1)
- # clojure-dev (34)
- # clojure-europe (3)
- # clojure-italy (4)
- # clojure-nl (27)
- # clojure-russia (19)
- # clojure-uk (25)
- # clojuredesign-podcast (4)
- # clojurescript (54)
- # cursive (6)
- # data-science (1)
- # datascript (11)
- # datomic (5)
- # emacs (3)
- # events (2)
- # fulcro (13)
- # graalvm (5)
- # jobs (15)
- # leiningen (7)
- # luminus (3)
- # melbourne (1)
- # nrepl (1)
- # nyc (2)
- # onyx (4)
- # pathom (6)
- # pedestal (18)
- # re-frame (19)
- # reagent (10)
- # shadow-cljs (27)
- # spacemacs (32)
- # sql (11)
- # tools-deps (35)
- # vim (50)
in cider with evil, what mode would I set the default evil state to emacs so I can use the debug commands (continue, next, etc) without having to press backslash. I tried this (evil-set-initial-state 'cider--debug-mode 'emacs)
but it doesn't work.
when the mode is active I see this show up with C-h m
Enabled minor modes: Aggressive-Indent Async-Bytecomp-Package
Auto-Composition Auto-Compression Auto-Encryption Blink-Cursor *Cider
Cider--Debug* ...
this seemed to work, (add-hook 'cider--debug-mode-hook #'evil-emacs-state)
I guess the first one doesn't work well with minor modes
Hi guys
i just recently started playing with deps.edn
and clj cli
i have a question how do i do a cider-jack-in-cljs
to deps + figwheel main template ? there are some indications in it's readme how to do it but u need to change your emacs config which i would rather not do (i use this emacs for a lot of different projects i don't want my config to be project specific)
is there a way to jackin ?
I tried cider connect but connection just hangs and nothing happens (it could be that i didn't configure template in order to do that)
any indication where to go from here would be greatly appreciated
Where are you getting the belief you need to change your config? @lepistane
Cider jack in cljs should just work. Important that you have figwheel main on the path so often this means using an alias
look into dir-locals which allows you to set variables to values but scoped to directories
yes? if its configured such that you can run it from the command line cider should kinda just crank it up just fine
@lepistane you woudln't be under windows would you ?
don't use a profile that includes command line args. lets CIDER start up the way it likes
common issues: is figwheel main in your "main" deps.edn or extra-deps under an alias?
no i just tried to jack-in. I moved figwheel dep to 'main' deps when i tried i get "are you sure you want to run cider jack in wihtout clojure project"
sorry for the hustle thank you very much i am really not sure how this didn't cross my mind
@lepistane did this solve your woes?
@lepistane this article describes how I jack-in in to a Clojure CLI tools created ClojureScript project from Spacemacs (just use the normal clojure-jack-in keybindings if using Emacs) http://jr0cket.co.uk/2019/07/CIDER-jack-in-to-Clojure-CLI-projects-from-Spacemacs.html