mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
Eldoc support should only show the function signature.
Returning the entire help string can be distracting as the minibuffers expands to try to fit everything on string. The point of eldoc is to help with function signature.
This commit is contained in:
parent
609abd9a5e
commit
88a52f52ea
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@
|
||||||
(ein:and-let* ((func (ein:function-at-point))
|
(ein:and-let* ((func (ein:function-at-point))
|
||||||
(kernel (ein:get-kernel)))
|
(kernel (ein:get-kernel)))
|
||||||
(ein:aif (gethash func (ein:$kernel-oinfo-cache kernel))
|
(ein:aif (gethash func (ein:$kernel-oinfo-cache kernel))
|
||||||
(ein:kernel-construct-help-string it)
|
(ein:kernel-construct-defstring it)
|
||||||
(ein:completions--build-oinfo-cache (list func))
|
(ein:completions--build-oinfo-cache (list func))
|
||||||
nil)))
|
nil)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue