Anthony Grimes
Anthony Grimes
We should handle QUIT for sure, but we shouldn't be firing a PART for it. Those are two separate events.
I see. The problem is that the zipper used under the hood holds the whole tree in memory. I'll get a fix in asap. Should just be a tree-seq (I...
Made a ticket for myself to remember to unfuck this repository asap. Will go through issues and prs within the next week.
But what's wrong with exposure to File objects? They're perfectly acceptable representations of files. They are, in fact, objects designed specifically for representing files. You can get a string from...
The Clojure philosophy is and always has been that if Java isn't broke, Clojure shouldn't fix it. Once again, File objects are _designed_ for representing files. Given how easy it...
Sure on the first count, but you can get a string if you want it. I posit that users of this library don't often do hefty string manipulation on paths....
Well, the paramount issue is that I don't agree that Java APIs are inherently nasty and terrible. File is a pretty tame class. I feel like the need to wrap...
Totally understandable. But, just so we're clear, you realize that in most cases it's literally the difference between: ``` clojure (parent some-file) ``` and ``` clojure (.getParent some-file) ``` In...
Fair enough! That said, I have to encourage you to try to be more open to Java APIs. They're not all that bad. Some of them, such as the Joda...