You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Fix#1105] Set eldoc function when reading from minibuffer
Emacs supports eldoc also in the minibuffer. For that, one can add eldoc-mode
to eval-expression-minibuffer-setup-hook. cider-read-from-minibuffer runs the
functions in that hook but doesn't set eldoc-documentation-function for the
minibuffer. Therefore, one gets an eldoc message telling that eldoc isn't
supported when cider-read-from-minibuffer is called and eldoc-mode is in
eval-expression-minibuffer-setup-hook.
This patch sets eldoc-documentation-function locally in the minibuffer before
cider-read-from-minibuffer runs the functions in
eval-expression-minibuffer-setup-hook.
0 commit comments