PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
I'm not sure if this is possible or not but it sure would be nice to have. Many times PowerShellers just let various statements "output" from the function so after...
I've been using "attach to" to debug posh-git tab expansion (awesome that I can do this!). However when I attach the debugger and trigger a breakpoint, the debugger stops where...
As of the currently unreleased Plaster 1.1, we now have the concept of `Project` and `Item` templates. Some work has already been started to wire these up but we decided...
Right now all editor features are exposed through a monolithic interface `IEditorOperations`. I think it would be better to go with a model that depends on more granular interfaces like...
A fairly common request is for the editor to give IntelliSense for a particular version of PowerShell. For instance, a user on a Windows 10 machine with PowerShell 5.1 might...
It seems that VS Code is adding new extension points to add context menu commands: https://github.com/alexandrudima/vscode-copy-relative-path/blob/master/package.json#L24 It would be cool to allow `$psEditor` extensions to add new commands there as...
The Start-EditorServices.ps1 script is meant to have behavior to check whether the PSES module is installed on the user's machine and provide feedback to the editor so that they can...
After the recent design of the PSES host to be loaded as a module inside of powershell.exe, it appears that one of our multi-version PowerShell support tricks don't work any...
PSES is properly running in a 64bit context, but when it passes a path to be opened in VSCode it is being redirected to the 32bit path. Example: ``` powershell...
When you Unregister and Editor Command, it does not remove it from the list. If you try to run the command, nothing happens. This could be confusing to users. I...