Used by 1 plugin
This LSP server requires pwsh to be installed on your system. Make sure it's available in your PATH before enabling.
/plugin marketplace add Piebald-AI/claude-code-lsps/plugin install piebald-ai-powershell-editor-services-powershell-editor-services@Piebald-AI/claude-code-lspsAdd to your .lsp.json or plugin.json:
{
"lspServers": {
"powershell": {
"command": "pwsh",
"extensionToLanguage": {
".ps1": "powershell",
".psd1": "powershell",
".psm1": "powershell"
},
"args": [
"-NoLogo",
"-NoProfile",
"-Command",
"if (-not (Get-Module -ListAvailable PowerShellEditorServices)) { Install-Module -Name PowerShellEditorServices -Scope CurrentUser -Force }; Import-Module PowerShellEditorServices; Start-EditorServices -HostName 'Claude Code' -HostProfileId 'ClaudeCode' -HostVersion '1.0.0' -Stdio -BundledModulesPath (Split-Path (Get-Module PowerShellEditorServices -ListAvailable).Path) -LogPath '/dev/null' -LogLevel 'None' -EnableConsoleRepl"
]
}
}
}pwshstdioInitialization Options:
{}Settings:
{}