-
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
added the key bindings for first and last selection in suggestions. #45881
added the key bindings for first and last selection in suggestions. #45881
Conversation
weight: weight, | ||
kbExpr: EditorContextKeys.textFocus, | ||
primary: KeyCode.End, | ||
secondary: [KeyCode.End], |
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.
Use secondary
only when the key code is different from primary
🤓
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.
Fixed
weight: weight, | ||
kbExpr: EditorContextKeys.textFocus, | ||
primary: KeyCode.Home, | ||
secondary: [KeyCode.Home], |
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.
same
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.
Fixed
d6dbc2c
to
be5030b
Compare
@jrieken sorry my bad.. Didn't know about the secondary thing. Fixed now.. |
Thanks, looking good |
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.
👍
For #43511