Nikita Prokopov

Results 125 issues of Nikita Prokopov

When standing inside successful evaluation, Ctrl+I should toggle between compact one-line truncated view (first) and expanded pretty-printed view (second): Note: do not use `clojure.pprint`, better implement it yourself: same idea,...

enhancement

Will probably require reporting back form start/end positions

enhancement

Stuff like double whitespace, line breaks, etc Check if anyone is already doing something like this? Cljdoc?

enhancement

The only use-case where this is needed and using a plain vector is not enough is resolving tempids: ``` {:db/valueType :db.type/tuple :db/tupleType :db.type/ref} ``` See also #364 and https://docs.datomic.com/on-prem/schema/schema.html#homogeneous-tuples

```clj (-> (d/empty-db {:comp {:db/valueType :db.type/ref, :db/isComponent true}}) (d/with [{:comp {}}]) :tx-data) ; => [#datascript/Datom [1 :comp 2 536870913 true]] ```

I've been playing around with this a bit more, and I've discovered a similar-looking bug. Let me know if I should make another issue for it. The following situation is...

Might save some time finding typos ``` [:find ?day ?meal :where [?day :day/dailies ?daily] [?dayily :daily/meal ?meal]] ``` Expected output: ``` WARN '?daily', '?dayily' are only referenced once, possible typo?...