-
-
Notifications
You must be signed in to change notification settings - Fork 889
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compatibility issues with lsp-tramp-connection and emacs 28 #2514
Comments
tshu-w
changed the title
Compatibility issues with lsp-tramp-connection and emacs 28
compatibility issues with lsp-tramp-connection and emacs 28
Jan 10, 2021
Thanks and let's discuss in #2375 |
maybe write an around of (defun start-file-process-shell-command@around (start-file-process-shell-command name buffer &rest args)
"Start a program in a subprocess. Return the process object for it.
Similar to `start-process-shell-command', but calls `start-file-process'."
;; On remote hosts, the local `shell-file-name' might be useless.
(let ((command (mapconcat 'identity args " ")))
(funcall start-file-process-shell-command name buffer command)))
(advice-add 'start-file-process-shell-command :around #'start-file-process-shell-command@around) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
In emacs GNU Emacs 28.0.50,
start-file-process-shell-command
was update from:to:
which make lsp-tramp-connection unusable.
A temporary solution on user side:
By the way, tramp complain about when lsp make tramp connection:
TRAMP user manual explains that
Is this the reason why lsp tramp often blocks emacs? #1845. Is there any way to improve
lsp-tramp-connection
?The text was updated successfully, but these errors were encountered: