PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
I'd like to get LSP support for modules I use frequently, like MSOnline. I copied the modules into my bundle_path, but that doesn't seem to import them into the session...
In the debugger code we currently go to great lengths to find and execute a type conversion attribute on variables: https://github.com/PowerShell/PowerShellEditorServices/blob/f9bde73000a6e2a8ebfc721d675dcb1c60316092/src/PowerShellEditorServices/Services/DebugAdapter/DebugService.cs#L489-L522 Most of this can't be avoided, but one thing...
Tagging @rjmholt and @andschwa I discovered that the evaluate command has result hardcoded to "" I don't necessarily think this is a bug since the output is supposed to be...
After some contemplation, I've realized there's no need to make a request to change/add to the PSES module, as I can just do it in my profile. However, what I...
We should start shipping the PowerShell Editor Services module to the PowerShell Gallery so that other editors can easily pull down the dependency without having to bundle with their extension.
I'm using doom-emacs with lsp mode, after install all components automatically. got error pop up ``` LSP :: Error from the Language Server: Internal Error - System.NullReferenceException: Object reference not...
In #1547 we're fixing the production code to strictly use `CreateDefault2()` as it was always intended to use. There was somewhat defunct code to run the tests with `CreateDefault()` instead....
I noticed an error when trying to use pwsh-ls with emacs for editing powershell scripts. I get this error on the *pwsh-ls::stderr* buffer:  **_Process pwsh-ls stderr finished The argument...
VS Code 1.14 includes a new [task provider concept](https://code.visualstudio.com/updates/v1_14#_tasks) which allows extensions to dynamcially register tasks that show up in the "Tasks: Run Task" menu. I think this would be...
You need to save the file and then the indicators appear above the `Describe` statement.