clojure-emacs / ac-cider

[DEPRECATED] Emacs auto-complete backend for CIDER
80 stars 15 forks source link

Optionally show namespaces of candidates in popup menu #35

Closed jeffwkm closed 8 years ago

jeffwkm commented 8 years ago

This matches the menu from the cider company-mode backend. screenshot

bbatsov commented 8 years ago

Why is everything a v? In company you'd get things like f (function), m (macro) and so on.

Otherwise the change looks useful to me.

bbatsov commented 8 years ago

I'd also mention this change in the readme.

alexander-yakushev commented 8 years ago

@bbatsov:

Why is everything a v? In company you'd get things like f (function), m (macro) and so on.

Because of AC's stupid system that only allows different one-letter tags if they come from different completion sources. In other words, to get n, f, and v AC has to query the completion backend three times.

bbatsov commented 8 years ago

Well, that sucks. Luckily I'm a happy company user. :-)

alexander-yakushev commented 8 years ago

After using company-mode for a few months now I'd say that it has its sucky moments as well :).

alexander-yakushev commented 8 years ago

Great, thanks! Just splice everything into a single commit and we're good to merge :).

jeffwkm commented 8 years ago

Okay, done.