drew verlee
drew verlee
Current i don't see any mention of a project wide way to refactor directories. This comes up often enough to be a pain point. Ideally you can use clj-refactor, which...
One advanced issue you seem to run into on any clojure system is that you have to manage multiple applications backed by repls at once. The easiest example is a...
Greetings. **Problem** My editors Clojure formatting rules are different then how the project is setup. This can lead to more lines being changed in a file then is necessary. **Solution**...
I'm trying to understand how I would use Nix and NixOs to setup an application development context to build clojure applications. The Derivations in the API section of the readme...
## Expected behavior With cider-auto-select-error-buffer set to nil when an exception is thrown it **won't** select/focus the cider-error buffer. ## Actual behavior With cider-auto-select-error-buffer set to nil when an exception...
As the title says, i would like to get the execution point and code site without going to the logs. My logs are often very cluttered. I would like the...
I followed the instructions in the detailed tutorial and i'm not getting the local bindings. ``` (sc.api/ep-info 8) ;; => {:sc.ep/code-site {:sc.cs/column 9, ;; :sc.cs/dynamic-var-names nil, ;; :sc.cs/expr (* ;;...
## Expected behavior I expect that running `cider-inspect` on the symbol [KafkaConsumer](https://github.com/drewverlee/example-failing-cider-enrich-classpath/blob/6b71bfdd5ac559dc2be04e6ef084630ee1a086fb/src/core.clj#L5) will display the JavaDocs at the bottom of the cider-inspect buffer. ## Actual behavior It doesn't, instead the...
In this [example project ](https://github.com/drewverlee/cider-englighten-mode-error) when i evaled ``` (myapp {:uri "/" :request-method :get}) ``` I got the expected return result. ``` {:status 200, :headers {"Content-Type" "text/html; charset=utf-8"}, :body "Hello...