We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Refs: #154016
Complexity: 3
Authors: @Tyriar, @meganrogge
Create Issue
We made some tweaks to the run recent command quick pick to bring the experience closer to regular reverse search in shells. Please test the features called out in https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_70.md#run-recent-command-as-a-replacement-for-reverse-search
Try adding and using these keybindings:
{ "key": "ctrl+r", "command": "workbench.action.terminal.runRecentCommand", "when": "terminalFocus" }, // Allow ctrl+r again to go to the next command in the quick pick { "key": "ctrl+r", "command": "workbench.action.quickOpenNavigateNextInViewPicker", "when": "inQuickOpen && inTerminalRunCommandPicker" }, // Fallback to the shell's native ctrl+r { "key": "ctrl+alt+r", "command": "workbench.action.terminal.sendSequence", "args": { "text": "\u0012"/*^R*/ }, "when": "terminalFocus" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Refs: #154016
Complexity: 3
Authors: @Tyriar, @meganrogge
Create Issue
We made some tweaks to the run recent command quick pick to bring the experience closer to regular reverse search in shells. Please test the features called out in https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_70.md#run-recent-command-as-a-replacement-for-reverse-search
Try adding and using these keybindings:
The text was updated successfully, but these errors were encountered: