dpsutton
dpsutton
cider no longer supports
Love this amazing project. Was wondering if you would be open to more keybindings for scrolling. Perhaps as a config, or with such a sparse keymap so far, maybe both...
Fixes #24452 Additional context from slack: > Autosuggestion query lockup AppDB. Regression since 43, which is causing major problems for a customer's setup. Have not been able to reproduce. Customer...
This bug kinda requires another bug to surface, but still hints at error handling and robustness of the page could be improved. The `Admin > Troubleshooting > Logs` page continuously...
following the recent changes, update the docs so its clear what cider-jack-in is hoping to accomplish and how the user can customize this.
```emacs-lisp cider-clojure-cli-parameters . "-A:toolbox:koacha:kibit:user -M -m nrepl.cmdline --bind 0.0.0.0 --port 5309 --middleware '%s'" ``` handle the bind and port type arguments for cli jack in.
```lisp (defun clojure-update-ns () "Update the namespace of the current buffer. Useful if a file has been renamed." (interactive) (let ((nsname (funcall clojure-expected-ns-function))) (when nsname (save-excursion (save-match-data (if (clojure-find-ns) (progn...
I'm looking for all strings in our codebase at Metabase that need translations. To this end i'm doing ```clojure (s/def ::translate (s/and (complement vector?) (s/cat :translate-symbol (fn [x] (and (symbol?...
Question came up in slack about how to require a ns and set a namespace. I was surprised there was no documentation on this. They mentioned they checked the help...
Build from the clojure cli: #### compile the java agent class: `clojure -T:build compile` or when consuming as a dep, the standard `clojure -T:deps prep` should work #### build a...