Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
1.5 KiB
Diff
28 lines
1.5 KiB
Diff
diff --git a/lsp-bridge.el b/lsp-bridge.el
|
|
index d3e2ff7..1b1d745 100644
|
|
--- a/lsp-bridge.el
|
|
+++ b/lsp-bridge.el
|
|
@@ -417,21 +417,7 @@ LSP-Bridge will enable completion inside string literals."
|
|
"Name of LSP-Bridge buffer."
|
|
:type 'string)
|
|
|
|
-(defcustom lsp-bridge-python-command (cond ((memq system-type '(cygwin windows-nt ms-dos))
|
|
- (cond ((executable-find "pypy3.exe")
|
|
- "pypy3.exe")
|
|
- ((executable-find "python3.exe")
|
|
- "python3.exe")
|
|
- ((executable-find "python.exe")
|
|
- "python.exe")))
|
|
- (t (cond ((executable-find "python-lsp-bridge")
|
|
- "python-lsp-bridge")
|
|
- ((executable-find "pypy3")
|
|
- "pypy3")
|
|
- ((executable-find "python3")
|
|
- "python3")
|
|
- ((executable-find "python")
|
|
- "python"))))
|
|
+(defcustom lsp-bridge-python-command "@python@"
|
|
"The Python interpreter used to run lsp_bridge.py."
|
|
:type 'string)
|
|
|