update packages

This commit is contained in:
2022-01-04 21:35:17 +01:00
parent 1d5275c946
commit 8de00e5202
700 changed files with 42441 additions and 85378 deletions

View File

@@ -6,8 +6,8 @@
;; Author: Frédéric Perrin <frederic (dot) perrin (arobas) resel (dot) fr>
;; URL: http://github.com/jschaf/powershell.el
;; Package-Version: 20201005.1642
;; Package-Commit: d1b3f95669343399f199f291ef76c09a0ede5e60
;; Package-Version: 20220103.925
;; Package-Commit: ce1f0ae0b2e41cd0934a9dfbf2ff016b1d14e9c0
;; Version: 0.3
;; Package-Requires: ((emacs "24"))
;; Keywords: powershell, languages
@@ -789,8 +789,11 @@ that value is non-nil."
;;; Code:
(defcustom powershell-location-of-exe
(or (executable-find "powershell") (executable-find "pwsh"))
"A string, providing the location of the powershell executable."
(or (executable-find "pwsh") (executable-find "powershell"))
"A string providing the location of the powershell executable. Since
the newer PowerShell Core (pwsh.exe) does not replace the older Windows
PowerShell (powershell.exe) when installed, this attempts to find the
former first, and only if it doesn't exist, falls back to the latter."
:group 'powershell
:type 'string)