This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-09-27
Channels
- # beginners (54)
- # bitcoin (2)
- # boot (1)
- # calva (10)
- # cider (30)
- # cljs-dev (25)
- # cljsrn (17)
- # clojure (27)
- # clojure-dev (16)
- # clojure-estonia (3)
- # clojure-hk (1)
- # clojure-italy (8)
- # clojure-losangeles (1)
- # clojure-nl (17)
- # clojure-russia (1)
- # clojure-spec (15)
- # clojure-uk (45)
- # clojurebridge (1)
- # clojurescript (95)
- # clojurescript-ios (1)
- # core-async (5)
- # cursive (10)
- # datomic (8)
- # emacs (2)
- # figwheel-main (31)
- # fulcro (99)
- # hyperfiddle (3)
- # immutant (1)
- # jobs (13)
- # jobs-discuss (82)
- # keechma (6)
- # leiningen (3)
- # lumo (1)
- # nrepl (1)
- # off-topic (37)
- # onyx (1)
- # pedestal (6)
- # re-frame (7)
- # reitit (2)
- # remote-jobs (1)
- # ring-swagger (3)
- # rum (6)
- # shadow-cljs (14)
- # specter (4)
- # tools-deps (27)
- # yada (12)
@cfleming My first attempt at documenting figwheel-main is at https://github.com/bhauman/figwheel-main/pull/97 Since you’ve changed the way the REPL works and might be looking at documenting that further, I found it really hard to find anything related to how to use the different REPL options anywhere (for the non-EAP versions). Might be worth using figwheel-main as an example for some of the new options since it can be run a few different ways.
I wonder, if there could/will be a way to "resolve sym as s/def", @cfleming What I am actually after, is cmd+click on keyword to go to spec definition, if available. And it does not work, when you have spec defined with a custom s/def-like macro.
Hi, is there a way to format code according to this https://github.com/bbatsov/clojure-style-guide#one-space-indent
Use a single space indentation for function (macro) arguments when there are no arguments on the same line as the function name.
;; good
(some-fn
even?
(range 1 10))
;; bad
(some-fn
even?
(range 1 10))
@vasac Yes, I’m not in front of IntelliJ but it’s something like Settings->Editor->Code Style->Clojure->General->One space list indent
CIDER can also be configured to do the reverse these days, but I can’t remember the config off the top of my head.