-
Notifications
You must be signed in to change notification settings - Fork 234
Add custom HTML views to VSCode module #523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
I'm not fully done here yet, I think I need to rethink the HtmlContentView/HtmlOutputView split because there's a lot of unnecessary API duplication there. Any thoughts? I'll send the vscode-powershell PR after I've firmed this one up. |
A few firsts in this change:
Would love some feedback on any of these since I'm still trying to formalize the pattern. |
I like the sound of a message type being added from an extension module |
Great job with the wrappers, these will be a lot easier to discover from PowerShell. |
What are your thoughts on using a |
Yeah, clunkier. I do like the option of being able to do |
The ISE only exposes 3 cmdlets but they're all prefixed "Ise", so maybe prefixing is generally the right thing to do. I'll hardcode the prefixes for now instead of using |
This change adds support for custom HTML views in the VSCode module which forms the basis for UI extensions in the PowerShell extension in Visual Studio Code. This change includes both .NET PowerShell cmdlet APIs for interacting with custom HTML UI in the editor.
…able-syntax Fix issue with VSCode var syntax change . to :
This change adds support for custom HTML views in the VSCode module
which forms the basis for UI extensions in the PowerShell extension in
Visual Studio Code. This change includes both .NET PowerShell
cmdlet APIs for interacting with custom HTML UI in the editor.