emacs jedi - completion shows function name and creates documentation in tooltip but documentation not found for scipy -
when complete sp.integrate.quad
see tooltip function documentation, accept completion, tooltip goes away. i'd prefer see the main part of doc string underneath function entire time i'm editing it's arguments. stop gap, tried getting @ documentation way. jedi:show-doc
or company-jedi-show-doc
promising functions @ least re-displaying docstring information, give error saying can't find documentation. why can't these procedures see documentation, yet initial completion tooltip can? has used jedi achieve close desired setup?
jedi setup info:
py-install-directory var must set correctly jedi:show-doc. can set variable directly in emacs init file following sentance.
(setq py-install-directory "~/.emacs.d/elpa/python-mode directory")
or following sentance case python-mode package updated
(setq py-install-directory (concat "~/.emacs.d/elpa/" (car (directory-files "~/.emacs.d/elpa/" nil "python-mode*"))))
Comments
Post a Comment