Bozhidar Batsov
Bozhidar Batsov
For some reason only "RET" does completion and "TAB" behaves pretty much as it always did when company completion popup is visible. I think this is related to me having...
Given the fact many major modes support `imenu` it might be a good idea to create an imenu backend for company.
See https://github.com/clojure-emacs/cider/issues/3009 ## Expected behavior `clojure-find-ns` should handle properly an `ns` form with preceding whitespace. ## Actual behavior It returns `nil`. ## Steps to reproduce the problem ```clojure (ns foo.bar)...
It'd be nice if function names in `letfn` were font-locked as function names. Here's a simple code snippet: ``` clojure (letfn [(twice [x] (* x 2)) (six-times [y] (* (twice...
Clojure is reasonably different from both Emacs Lisp and Common Lisp and we should decouple clojure-mode completely from `lisp-mode.el`. The fact that a lot of code is being leveraged from...
I've pushed most of our packages to NonGNU ELPA. `clj-refactor.el` remains a notable omission as we need to also push a few of its deps: - inflections - paredit I...
It'd be nice if we had some repo about the best RSpec practices rubocop-rspec is enforcing. Right now it's a bit unclear where are some of the rules originating from...
Travis CI has been discontinued and we need some alternative. It seems pretty much all PRs are block on this. That's the final build that ever ran:  Should we...
nREPL 0.5 introduced some configuration files, which ideally should be respected by REPLs using nREPL. (see https://nrepl.org/nrepl/0.6.0/usage/server.html#_server_configuration) Lein and clj already honour the config file, and it be nice if...