File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 17
17
* Replace the per-interface ~(INTERFACE ...)~ pcase forms with a single,
18
18
unified ~(lsp-interface INTERFACE ...)~ form. The per-interface forms are no
19
19
longer generated. *This is a breaking change.* (See #4430.)
20
+ * If asm-lsp is installed, lsp-asm won't try to download it to cache store
20
21
21
22
** 9.0.0
22
23
* Add language server config for QML (Qt Modeling Language) using qmlls.
Original file line number Diff line number Diff line change @@ -81,7 +81,8 @@ Will update if UPDATE? is t."
81
81
(make-lsp-client
82
82
:new-connection (lsp-stdio-connection
83
83
#'lsp-asm--server-command
84
- (lambda () (f-exists? lsp-asm-store-path)))
84
+ (lambda () (or (executable-find " asm-lsp" )
85
+ (f-exists? lsp-asm-store-path))))
85
86
:major-modes lsp-asm-active-modes
86
87
:priority -1
87
88
:server-id 'asm-lsp
You can’t perform that action at this time.
0 commit comments