clojure-mode icon indicating copy to clipboard operation
clojure-mode copied to clipboard

Emacs support for the Clojure(Script) programming language

Results 57 clojure-mode issues
Sort by recently updated
recently updated
newest added

Currently clojure-mode appears to be treating `dec'` as the symbol `dec` with a `'` following it. This is made most obvious when I call `cider-find-var` on `dec'` at it finds...

bug

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...

help wanted

## Expected behavior `M-x clojure-align` on the following forms should be a no-op: ```clojure {:a [123 456 789] :b 10} (cond foo {:bar 1 ; initialize the Bar :baz 2}...

## Expected behavior Turn on paredit-mode, then turn it off, and be able to type unbalanced characters `()[]{}`. ## Actual behavior Can't type an unbalanced `}` ## Steps to reproduce...

The presence or absence of a type hint appears to affect the indentation that clojure-mode will emit: ```clojure ;; autoindented with clojure-mode (defprotocol Foo (^Long omg [this] "")) ;; there...

bug

I have a function (function, not macro. But I don't think it matters) with the following signatures: ``` [request payoff right-body] [request response-data payoff right-body] [request response-data includes payoff &...

It would be nice to have better support for writing clojure scripts. For example, boot provides shebag support so a script might look like this: #!/usr/bin/env boot (println "hello world")...

help wanted
feature request

It looks like `define-clojure-indent` (and `put-clojure-indent`) only allow defining the indentation rules for individual symbols. I wish for *all* keywords to be indented like this: ``` (:keyword map) ``` Unfortunately,...

help wanted
feature request

![Imgur](http://i.imgur.com/F6itCwQ.png) This happens most often in prefix vectors but applies everywhere

enhancement