mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(python): invalid command for basedpyright
`lsp-pyright-langserver-command` does not recognize a full path, only "pyright" or "basedpyright". Fix: #8160 Close: #8161
This commit is contained in:
committed by
Henrik Lissner
parent
7533707e00
commit
a211332796
@ -354,5 +354,5 @@
|
|||||||
:when (modulep! :tools lsp -eglot)
|
:when (modulep! :tools lsp -eglot)
|
||||||
:defer t
|
:defer t
|
||||||
:init
|
:init
|
||||||
(when-let ((exe (executable-find "basedpyright")))
|
(when (executable-find "basedpyright")
|
||||||
(setq lsp-pyright-langserver-command exe)))
|
(setq lsp-pyright-langserver-command "basedpyright")))
|
||||||
|
Reference in New Issue
Block a user