Fix workspace::SendKeystrokes example in docs (#36515)

Closes: https://github.com/zed-industries/zed/issues/25683

Remove two bad examples from the key binding docs.
`cmd-shift-p` (command palette) and `cmd-p` (file finder) are async
operations and thus do not work properly with
`workspace::SendKeystrokes`.

Originally reported in
https://github.com/zed-industries/zed/issues/25683#issuecomment-3145830534

Release Notes:

- N/A
This commit is contained in:
Peter Tripp 2025-08-19 15:26:40 -04:00 committed by GitHub
parent 05fc0c432c
commit 69b1c6d6f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -225,12 +225,14 @@ A common request is to be able to map from a single keystroke to a sequence. You
[
{
"bindings": {
// Move down four times
"alt-down": ["workspace::SendKeystrokes", "down down down down"],
// Expand the selection (editor::SelectLargerSyntaxNode);
// copy to the clipboard; and then undo the selection expansion.
"cmd-alt-c": [
"workspace::SendKeystrokes",
"cmd-shift-p copy relative path enter"
],
"cmd-alt-r": ["workspace::SendKeystrokes", "cmd-p README enter"]
"ctrl-shift-right ctrl-shift-right ctrl-shift-right cmd-c ctrl-shift-left ctrl-shift-left ctrl-shift-left"
]
}
},
{