vemv

Results 256 issues of vemv

Given a ns-qualified keyword such as: `::kws.grid/column-settings` I'd like only `clojure-keyword-face` to be applied to it. But also `font-lock-type-face` is partially applied to it: **How it looks like** ![image](https://user-images.githubusercontent.com/1162994/35185631-13825ba6-fe08-11e7-8a5f-c3472a70b9ab.png) **How...

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

`cljr-magic-require-namespaces` doesn't currently allow specifying its intended context (:clj, :cljs). This can easily cause incorrect suggestions for cljr-slash. I'd suggest one of the following: * Introduce new defcustom, e.g. `cljr-jvm-magic-require-namespaces`...

For cljr-slash functionality, some edge cases will predictably never succeed, yet will spend computational time. e.g. `a/a/` has two slashes, there will be nothing matching that. Similarly sometimes as I...

## Expected behavior `cljr-add-stubs` will succesfully complete a `reify` for a Java class that has been `:import`ed, i.e. the symbol is not package-qualified. ## Actual behavior Errors with `Can't find...

bug
help wanted
low hanging fruit

I'd expect typing `^::str/` to insert a `clojure.string` require, but currently it doesn't. Probably in: https://github.com/clojure-emacs/clj-refactor.el/blob/cd6b6fb30fc5a429ff209d20af2f2f304937fe99/clj-refactor.el#L1927 One should add something like: ```diff (1- (point))) + (string-remove-prefix "^::") (string-remove-prefix "::")))) ```...

bug

When e.g. `cljr-slash` asks me to disambiguate a libspec, the `*Completions*` buffer is kinda hidden (you're not aware of it until you hit TAB), so a newbie user may be...

enhancement

![image](https://user-images.githubusercontent.com/1162994/34463467-4c9defd2-ee5d-11e7-8359-bfca4fc5b59c.png) It's usual to `curl -I` (HEAD request) to check whether an endpoint is alive. FW's file server returns a spurious 404. I don't terribly need this but it would...

help wanted

A formatter might change ns metadata: ```diff - {:clj-kondo/config '{:linters {:redundant-expression {:level :off}}}} + #:clj-kondo{:config '{:linters {:redundant-expression {:level :off}}}} ``` The latter form is not recognised.

PR welcome