-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Fix Markdown link in Run Command tool #1462
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
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.
Pull Request Overview
This PR fixes a broken Markdown link in the Run Command tool that displays confirmation messages to users. The previous implementation incorrectly encoded command arguments, preventing the link from working properly when users clicked it.
Key Changes:
- Updated command URI generation to use the
commandUri
helper function instead of manual JSON encoding - Adjusted the trusted command configuration to match the Quick Open command being linked
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.
Thanks for the fix!
ff109b3
to
d07ca7c
Compare
* Fix Markdown link in Run Command tool * Import commandUri in vscodeCmdTool.tsx Add import for commandUri from linkify commands * Use commandId instead of name * Small comment Add comments to clarify command ID handling in Quick Open.
Add import for commandUri from linkify commands
Add comments to clarify command ID handling in Quick Open.
d07ca7c
to
1d85808
Compare
The link wasn't working before

Fixes microsoft/vscode#272449
Partial fix for: microsoft/vscode#252415