We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5b6df commit a81a721Copy full SHA for a81a721
jcs-poptip.el
@@ -250,14 +250,13 @@ forever delay. HEIGHT of the tooltip that will display."
250
(let ((thing (jcs-poptip-2str (symbol-at-point)))
251
(desc))
252
(msgu-silent
253
- (cl-some (lambda (backend)
254
- (ignore-errors (funcall backend 'candidates thing)) ; refresh
255
- (setq desc
+ (setq desc
+ (cl-some (lambda (backend)
+ (ignore-errors (funcall backend 'candidates thing)) ; refresh
256
(or (jcs-poptip--company-doc-buffer backend thing)
257
(ignore-errors (funcall backend 'quickhelp-string thing))
258
(ignore-errors (funcall backend 'meta thing))))
259
- desc)
260
- (jcs-poptip--company-backends)))
+ (jcs-poptip--company-backends))))
261
(jcs-poptip-create (string-trim desc) :point (point))))
262
263
(defun jcs-poptip--company-dict ()
0 commit comments