File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 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
20
* If asm-lsp is installed, lsp-asm won't try to download it to cache store
21
+ * Fix lsp-unzip on windows when unzip was found on the PATH
21
22
22
23
** 9.0.0
23
24
* Add language server config for QML (Qt Modeling Language) using qmlls.
Original file line number Diff line number Diff line change @@ -8458,7 +8458,10 @@ archive (e.g. when the archive has multiple files)"
8458
8458
"Unzip script to unzip file.")
8459
8459
8460
8460
(defcustom lsp-unzip-script (lambda ()
8461
- (cond ((executable-find "unzip") lsp-ext-unzip-script)
8461
+ (cond ((and (eq system-type 'windows-nt)
8462
+ (executable-find "powershell"))
8463
+ lsp-ext-pwsh-script)
8464
+ ((executable-find "unzip") lsp-ext-unzip-script)
8462
8465
((executable-find "powershell") lsp-ext-pwsh-script)
8463
8466
(t nil)))
8464
8467
"The script to unzip."
You can’t perform that action at this time.
0 commit comments