Fork me on GitHub
#cider
<
2016-11-10
>
gregnwosu17:11:10

how can i enable completion in the repl?

aengelberg19:11:44

do define-clojure-indent indent specs have a maximum depth?

aengelberg19:11:22

My desired style convention is for all lists to (by default) indent as a macro with 0 special forms. So I put in:

(define-clojure-indent
  (defn '(1 nil (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0 (0))))))))))))))))))))))

aengelberg19:11:02

but it only worked for about three levels deep.

(defn f
  []
  (a
    (b
      (c
        (d
         (e
          (f)))))))

chadhs21:11:29

is there a way to customize the cider modeline? didn’t see anything in the manual as an example i’d like to maybe set it from cider[clj:namespace@:port] to [clj:namespace]

chadhs22:11:30

☕[clj:namespace] would be cool lol

richiardiandrea23:11:03

has someone already worked on a way to switch clojure(script) buffer from clojure-mode to inf-clojure-mode by any chance?