Kjetil Thuen
Kjetil Thuen
Thanks for the awesome tool! We are currently using it in an internal web-based integration testing tool. It's working great right up until trying to display a pretty printed version...
Please answer the following questions and leave the below in as part of your PR. - [x] This PR corresponds to an [issue with a clear problem statement](https://github.com/babashka/babashka/blob/master/doc/dev.md#start-with-an-issue-before-writing-code). - [73](https://github.com/babashka/bbin/issues/73)
As documented [here](https://github.com/clojure/tools.gitlibs#configuration), tools.gitlibs allows overriding the default `~/.gitlibs` directory using an environment variable. If this variable is set, bbin will fail since it hardcodes `~/.gitlibs`: ``` ❯ echo $GITLIBS...
Opening a clojure file with the following function in clojure-ts-mode: ```clojure (defn unescape [s] (-> s (string/replace "&" "&") (string/replace "*" "*") (string/replace "^" "^") (string/replace "_" "_") (string/replace "~"...