-
Notifications
You must be signed in to change notification settings - Fork 30k
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
Test: terminal quick fix widget #166761
Comments
@meganrogge Do you mean this widget in the terminal? Also, I tried to add quick fixes using following contribution and I do not know why I do not see it "terminal": {
"quickFixes": [
{
"id": "terminal-sample fix",
"commandLineMatcher": "echo [^\\s]+",
"outputMatcher": {
"lineMatcher": "(?<input>[^\\s]+) (?<inputtwo>[^\\s]+)",
"anchor": "bottom",
"length": 1,
"offset": 0
},
"linkToOpen": "https://google.com/${group:input}${group:inputtwo}",
}
]
} Got this sample from here PS: It would be great, if the description of the test plan item has more context about what is being tested and some samples/references that can be helpful for testing. |
@sandy081 run See release notes and docs for more examples: https://code.visualstudio.com/updates/v1_72#_terminal-quick-fixes, https://code.visualstudio.com/docs/terminal/shell-integration#_quick-fixes |
@sandy081 sorry for the confusion/ lack of directions. we just care about testing the functionality of the quick fix widget in this issue - no need to test the contribution point. I've updated the instructions above. |
Thanks for the updated description. |
@lszomoru are you in screen reader mode, do you have the conpty setting overridden and what version of powershell are you on? |
It was the conpty setting. Thank you! |
Refs #162067
Complexity: 3
Authors: @meganrogge @Tyriar @mjbvz
Create Issue
We now have an
ActionWidgetService
used by both thecode actions
in the editor and thequick fixes
in the terminal. Make sure that the widget works as expected in the terminal and feels consistent with the experience in an editor.The quick fixes we support currently include:
git sttatus
git push
git push --set-upstream origin <branch-name>
git add . -all
<port>
then launch that again so you see an error related toaddress already in use
- exampleThe text was updated successfully, but these errors were encountered: