PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
The way it is currently setup, it can be very difficult to determine what the Editor Command Names are that are loaded. The user is only shown the Display Name,...
Eventually there is going to be a need to ignore certain Commands or Modules when PSES Registers Commands. Here are the ideas I have had. - Block all Registering from...
I was wondering if there would be a way to build in a sort of functionality to give $psEditor access to the visible editor screen coordinates? I think there are...
It would be useful if there was an API to add diagnostic markers to script files so that any editor command could add "squigglies" to arbitrary regions of an open...
I think it would be beneficial if a a registered command had some form of visual for the user when loaded. That way when one is loaded they are aware...
Add some form of error/output if $Profile does not exist or create one when Extension is installed
When running the following command you get no results by default: ``` powershell $psEditor.Workspace.OpenFile($profile) ``` $profile outputs this ``` PS C:\Program Files (x86)\Microsoft VS Code Insiders $profile C:\Users\i2871rbp\Documents\WindowsPowerShell\Microsoft.VSCode_profile.ps1 ``` However,...
These would hopefully work similar to the ext commands. "command param" and then it auto populates intellisense autocomplete in the options. This would be something I would see as an...
It would be nice if there was a way for the user to opt in to the auto-loading of any PowerShell Gallery modules they've installed which include editor commands written...
In Visual Studio Code, the `ctrl + F5` keyboard shortcuts translates PowerShell command aliases. The performance of this leaves a lot to be desired, and sometimes results in a confusing...
I would recommend that we include in-line help for parameters, to minimize the need for someone to separately call `Get-Help`. We've already got Intellisense for the parameter name & type,...