From 75c803658d2f05fe2e8401579a6b7ea528322334 Mon Sep 17 00:00:00 2001 From: redactedscribe Date: Sun, 22 Mar 2026 19:37:55 +0200 Subject: [PATCH 1/2] Modify PowerShell Editor Services configuration Updated PowerShell Editor Services configuration with new binary path and arguments. --- README.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0fc6e75..dca6834 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,20 @@ If you wish to specify a custom path to your language server, you can do so via ```json { "lsp": { - "powershell-es": { - "binary": { - "path": "" - } - } + "powershell-es": { + "binary": { + "path": "pwsh.exe", + "arguments": [ + "-NoLogo", + "-NoProfile", + "-Command", + "path\\to\\Start-EditorServices.ps1", + "-Stdio", + "-SessionDetailsPath", + "path\\to\\powershell-es.session.json", + ], + }, + }, } } ``` From dcadb1a7ad10e8f974b524350884c8674b78fe91 Mon Sep 17 00:00:00 2001 From: redactedscribe Date: Sun, 22 Mar 2026 19:45:25 +0200 Subject: [PATCH 2/2] Update paths in README for PowerShell scripts --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dca6834..76ba1bd 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ If you wish to specify a custom path to your language server, you can do so via "-NoLogo", "-NoProfile", "-Command", - "path\\to\\Start-EditorServices.ps1", + "path\\to\\PowerShellEditorServices\\Start-EditorServices.ps1", "-Stdio", "-SessionDetailsPath", - "path\\to\\powershell-es.session.json", + "path\\to\\PowerShellEditorServices\\powershell-es.session.json", ], }, },