-
Couldn't load subscription status.
- Fork 240
Wired up Show Information|Warning|Error Message #244
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
|
Thanks man! I'll help you get this finished up when I've got a few spare moments. |
| { | ||
| return this.editorOperations.GetEditorContext().Result; | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra space sneaked in here ;)
* Add support for debug protocol setVariableRequest. * Cleaned up some comments in the SetVariable method and removed some exceptions that we no longer need to catch now that we aren't using System.Convert.ChangeType().
…-program PSES half of program -> script launch prop change.
Add unit tests for this functionality.
…tick-rule Add PSMisleadingBacktick rule to the default ruleset.
Add support for Hit Count breakpoints
Remove PSScriptAnalyzer submodule
This change introduces a new PowerShellVersionDetails class which contains additional details about the version and runtime of the current PowerShell session: version, GitCommitId, edition, and processor architecture. A new protocol request and response pair was added for gathering this version information from the editor client.
Add PowerShellVersionDetails class and PowerShellVersionRequest
This change fixes an issue where script output for very small scripts is not being written out reliably before the debug adapter terminates. The fix is to add an extra output flush before sending the TerminatedEvent back to the client. This fix is temporary until we get the REPL integration online. Resolves #138. Resolves PowerShell/vscode-powershell#284.
Fix issue with debugger output not being written for short scripts
This change makes some slight tweaks to the PowerShell version and architecture gathering code to improve the user experience in the host editors which display those values.
Improve PowerShell version and architecture gathering
Provide quickfix functionality
|
Thanks a lot for the PR, Doug, I appreciate it! I apologize for taking so long to get it fixed up and merged. |
This change fixes PowerShell#244 which reports that the extension does not load when the user's username contains a space. This was caused by the script execution of Start-EditorServices.ps1 not being contained within quotes.
This change is