Fork me on GitHub
#cursive
<
2015-12-12
>
rantingbob18:12:40

I just saw the "Thread Form" function...very cool.

rantingbob18:12:09

Though...it doesn't newline. I wonder if you couldn't use parinfer to fix that and get a bunch of birds with one (admittedly quite large) stone

misha21:12:40

good day/night, what is the status of cursive's support for prismatic/schema? I found this (resolved) issue https://github.com/cursive-ide/cursive/issues/319 but am getting s/defrecord cannot be resolved:

; [prismatic/schema "1.0.4"]
;...
  (:require
    [schema.core :as s])) ;; .clj

(s/defrecord StampedNames ;; basically from schema tutorial page
  [date :- Long
   names :- [s/Str]])

;; idea 15.0.1
;; cursive 1.1.0-15

;; repl:
(in-ns 'model.core)
(->StampedNames 1000000 "yo")
=> #model.core.StampedNames{:date 1000000, :names "yo"}
Am I doing it wrong? thank you. cc @cfleming