clojure-mode
clojure-mode copied to clipboard
Emacs support for the Clojure(Script) programming language
## Expected behavior I can edit code with `comment` shadowed from clojure.core without the editor hanging. (Whether or not I should do this in the first place is a lesson...
I have a slightly unconventional def macro that looks like this: ``` (defn+ my-special-fn [] (body)) ``` ## Expected behavior `(clojure-find-def)` with the pointer in that function should return `("defn+"...
* It looks like the version of clojure-mode-extra-font-locking.el has been out-of-sync with clojure-mode.el and has been stuck in 3.0.0 for a long time. * This patch sync the version with...
If I put a comment after a `defn` like this: ```clojure (defn ;; comment foo [a b] (+ a b)) ``` it's still syntactically valid clojure. However, this breaks some...
This allows for font-locking expressions discarded with the #_ form differently than comments. Maintains default by inheriting from font-lock-comment-face. Fixes #688 ----------------- Before submitting a PR mark the checkboxes for...
Over the years I've found myself wanting to change the face used for `#_` forms vs normal `;` comments. But since `#_` forms are mapped to `font-lock-comment-face` this isn't straightforward....
## Expected behavior When I am in a file `src/app/project.clj` in a deps.edn project, `clojure-project-root-path` returns my root directory. ## Actual behavior `clojure-project-root-path` interprets this as a leiningen project and...