PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
We need a new completions system that allows new "completion providers" to be added so that custom completion entries can be added to the existing PowerShell completions.
Not sure if this used to work but it isn't in 1.2.1 and it would be really nice to have.
This API will allow $psEditor users to request symbols for the current document with which they can perform operations. This should also allow registering new "symbol providers" which are capable...
This may need to be editor-specific since the settings format could be different for each. It could allow an PS-based extension author to do things like set window zoom level,...
Screenshot: 
When I introduced the concept of gathering session details after each command that gets run, I rolled prompt gathering into that to avoid running yet another command each time a...
We need to have a more robust and reliable method for indexing symbols across a module or modules within a workspace so that the following operations work as expected: -...
Now that we've moved to an integrated console in the PowerShell extension for VS Code, we need an alternative way for showing UI prompts from modules like Plaster and other...
VS Code 1.8.1 / PSES v0.9.0.526 I have a function in a script defined like so: ```powershell function script:gitRemoteBranches { ... } ``` Later in the same script it is...