clojure-emacs / ac-nrepl

[DEPRECATED] Emacs auto-complete backend for nrepl completions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The documentation is not showed in full in pop-ups

tbatchelli opened this issue · comments

e.g. for def, the pop-up shows:

 Please see http://clojure.org/special_forms#def 

but (doc def) returns:

def
  (def symbol doc-string? init?)
Special Form
  Creates and interns a global var with the name
  of symbol in the current namespace (*ns*) or locates such a var if
  it already exists.  If init is supplied, it is evaluated, and the
  root binding of the var is set to the resulting value.  If init is
  not supplied, the root binding of the var is unaffected.

  Please see http://clojure.org/special_forms#def

Agreed -- I noticed this, and will investigate soon. :-)

This was due to an error in the code I contributed to nrepl.el -- watch for clojure-emacs/cider#65 getting merged.