2020-05-01 11:01:11 +02:00
|
|
|
;;; tools/lsp/autoload/common.el -*- lexical-binding: t; -*-
|
|
|
|
|
2022-06-22 15:11:59 +02:00
|
|
|
;;;###autodef (fset 'lsp! #'ignore)
|
2020-05-01 11:01:11 +02:00
|
|
|
(defun lsp! ()
|
|
|
|
"Dispatch to call the currently used lsp client entrypoint"
|
|
|
|
(interactive)
|
|
|
|
(if (featurep! +eglot)
|
|
|
|
(eglot-ensure)
|
2020-08-02 16:27:09 -04:00
|
|
|
(unless (bound-and-true-p lsp-mode)
|
|
|
|
(lsp-deferred))))
|