Merge pull request #4875 from dsdshcym/fix-lookup-documentation-handler

Indicate that lsp-describe-thing-at-point is async
This commit is contained in:
Henrik Lissner 2021-04-17 00:35:56 -04:00 committed by GitHub
commit 8427af3247
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,8 +58,8 @@ about it (it will be logged to *Messages* however).")
(set-lookup-handlers! 'lsp-mode
:definition #'+lsp-lookup-definition-handler
:references #'+lsp-lookup-references-handler
:documentation #'lsp-describe-thing-at-point
:implementations #'lsp-find-implementation
:documentation '(lsp-describe-thing-at-point :async t)
:implementations '(lsp-find-implementation :async t)
:type-definition #'lsp-find-type-definition)
(defadvice! +lsp--respect-user-defined-checkers-a (orig-fn &rest args)