File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -9925,12 +9925,10 @@ In case the major-mode that you are using for "
9925
9925
(let ((start-plain (make-temp-file "plain" nil ".el")))
9926
9926
(url-copy-file "https://raw.githubusercontent.com/emacs-lsp/lsp-mode/master/scripts/lsp-start-plain.el"
9927
9927
start-plain t)
9928
- (async-shell-command
9929
- (format "%s -q -l %s %s"
9930
- (expand-file-name invocation-name invocation-directory)
9931
- start-plain
9932
- (or (buffer-file-name) ""))
9933
- (generate-new-buffer " *lsp-start-plain*"))))
9928
+ (start-process "lsp-start-plain"
9929
+ (generate-new-buffer " *lsp-start-plain*")
9930
+ (expand-file-name invocation-name invocation-directory)
9931
+ "-q" "-l" start-plain (or (buffer-file-name) ""))))
9934
9932
9935
9933
9936
9934
You can’t perform that action at this time.
0 commit comments