This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-12-17
Channels
- # admin-announcements (104)
- # adventofcode (3)
- # aws (1)
- # boot (651)
- # cljs-dev (21)
- # cljsrn (12)
- # clojure (81)
- # clojure-china (1)
- # clojure-germany (1)
- # clojure-miami (2)
- # clojure-nl (8)
- # clojure-russia (19)
- # clojurescript (208)
- # core-typed (1)
- # cursive (19)
- # datavis (55)
- # datomic (57)
- # events (1)
- # hoplon (102)
- # ldnclj (12)
- # leiningen (8)
- # off-topic (11)
- # om (127)
- # onyx (21)
- # parinfer (2)
- # portland-or (3)
- # proton (2)
- # re-frame (2)
- # reagent (6)
When for whatever reason there is an inbalance between brackets or parens, what’s the best option for rebalancing?
I love this IDE, but right now paredit is killing me. In Vim I’d just turn it off for a second.
There is a button for switching structural editing on/off in the lower right hand side of the Cursive window.
DN said the following commands are mandatory for him: Raise, Splice, Split, Sexpr aware kill.
So this Cursive business is totally banging. So is figwheel. I've tried before to make them play nicely, but have always got too bored/frustrated and given up. Now when I'm doing frontend work, I end up just using the console repl, which is pony compared to an IDE one. Is there an easy(ish) way to do figwheel in Cursive that I've missed?
I've only know how to do boot clojurescript REPL, but doesn't figwheel let you run a nREPL server?
At least this here seems suggest so - https://github.com/bhauman/lein-figwheel#figwheel-server-side-configuration - with :nrepl-port
option.
yeah it runs an nrepl server, but then i have to connect to it and it's a pain to restart (which it requires often). Essentially I want to stop running figwheel in a console.
Have you seen this then? https://github.com/bhauman/lein-figwheel/wiki/Running-figwheel-in-a-Cursive-Clojure-REPL
i have, that's the guide i usually try to make work, and is what i'm trying to avoid. I don't want to go adding files and changing config that will annoy the emacs-toting reviewer of my pull request! I'm looking for a way to run an existing project using figwheel in cursive without changing code in the project; of course i'm happy to change my local leiningen profiles. Part of what I want here is to make it easy for designers in my team to fire up a project locally and start editing without having to know how the build system works or how to use a terminal. Thanks very much for taking a look into it, but I guess for now the answer is "not quite, it's still a bit tricky"!
@wildermuthn: @tord: You can also bind the “Toggle Structural Editing” action to a key if you do it a lot.
@conan: cursive has an option to connect to remote repls... what's wrong with that? That's what I use to connect to the figwheel nREPL anyways, and then go
(use 'figwheel-sidecar.repl-api)
(cljs-repl)