clj-commons / clooj

clooj, a lightweight IDE for clojure
Other
421 stars 49 forks source link

Ellipsis Added to spit #97

Closed Ariarule closed 12 years ago

Ariarule commented 12 years ago

In 0.3.5, a call to spit with a map will result in the map being truncated as if it were being printed in the REPL:

(spit "example-map.txt" (zipmap (range 100) (reverse (range 100)))) ;no longer works
;the contents of the file will be
;{0 99, 32 67, 64 35, 96 3, 1 98, 33 66, 65 34, 97 2, 2 97, 34 65, 66 33, 98 1, 3 96, 35 64, 67 32, 99 0, 4 95, 36 63, 68 31, 5 94, ...}
Ariarule commented 12 years ago

Not specific to Clooj REPL -- Clojure does this when print-length is set.

arthuredelstein commented 12 years ago

fixed