-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Ctrl+Insert does not copy the selected text from Command Palette #9520
Comments
I see, #9056 added special handling for Ctrl+C and Ctrl+V in the command palette, but not for Ctrl+Insert and Shift+Insert. |
Wait holy what now - Does ctrl+Ins just work (pretty much) everywhere in the OS? I did not know that. TIL! That sems like an easy enough fix. |
Wikipedia lists Ctrl+Insert copying as being part of the IBM Common User Access standard. |
We have got to figure out what to do about key bindings and how they impact or do not impact certain scopes. |
I'm inclined to reject a pull request at this point that adds a fourth band-aid to the command palette (AND THE SEARCH BOX) by introducing another "did the user press THIS key?" check. |
Maybe the precedence could depend on the action to which the key is bound. |
What a headache. Everything starts with us not getting some keys in KeyDown handler (as they get handled by inner controls). As a result we register to PreviewKeyDown, that propagates top down. And this gives the key bindings a priority over the controls (e.g., ctrl+c key binding would get priority over ctrl+c in search box). To address this we have added special flows in the PreviewKeyDown handler, covering ctr+c, but not ctrl+insert (which I would expect to work if it was not bound). As Dustin mentioned we need to find a good approach. I really don't understand the decision not to bubble up some keys. |
If I am renaming a tab in Windows Terminal Preview 1.7.572.0 and press the Left arrow key when the insertion point is already at the beginning of the edit box, then it closes the edit box and commits the change as if I had pressed Enter. Is that a consequence of keys being bubbled up and the edit box deciding not to handle the key? If so, I hope this behavior won't spread to the command palette and the find box. |
@KalleOlaviNiemitalo - not sure how you find all these 😄. I think this one is unrelated, the Left key switches to another tab (I guess the TabView catches it and decides to switch to an adjacent), causing the renamer box to lose focus. If we want to fix this, we should probably open a separate ticket |
Hello everyone! I'd like to address this issue by adding a conditional check for I noticed that Please let me know if this direction works for you! If this sounds good, I can create a new branch and a draft PR. 😊 |
Environment
Steps to reproduce
abc
.abc
.Expected behavior
The text
abc
should be copied to the clipboard, and the command palette should remain open.Actual behavior
The command palette closes, and the text that you selected in the pane is copied to the clipboard.
Notes
If you copy by pressing Ctrl+C instead of Ctrl+Insert, then it works as expected.
The text was updated successfully, but these errors were encountered: