-
Notifications
You must be signed in to change notification settings - Fork 14
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
vim visual line mode-like selection navigation #162
Comments
Are you asking to configure something like the select multiple adjacent messages keyboard shortcut?
Thunderbird Keyboard shortcuts (search for adjacent) How to simulate or synthesize a keypress or a mouse click Simulate Shift+ArrowUp key event.
Simulate Shift+ArrowDown key event.
There may be a cmd_ command that selects an adjacent message in the thread pane, but I don't think so.
The cmd_selectAll command selects all messages in the thread pane. |
I would like to be able to move up and down and keep selections. When I select with my mouse multiple e-mails, or with shift (for adjacent emails), and press the up or down key the selection is removed. I could emulate a mouse click to select the currently highlighted email, but it wouldn't matter because when I press up or down, it will become unselected.
|
Here is how to change the focus up or down, but not the selection.
Reference The event[accelKeyName] expression is true when the Ctrl key is down on Windows. Select multiple adjacent messages:
Select multiple non-adjacent messages:
You can't change how the Shift key or Ctrl key works using the tbkey addon. You can create a Shift+J key binding to change the focus down and keep the selection. If you want to toggle the selection on the focused message, then use the Ctrl+Space shortcut. |
How would one go about finding the command triggered by Ctrl-Space (toggle message selection), in order to rebind it? |
How to find the toggle message selection command? Try looking in the source code. The "Space bar keystroke selection toggling" code is 12 lines down from the "Change focus, but not selection" code.
Reference (link posted above) Reference The event[accelKeyName] expression is true when the Ctrl key is down on Windows. |
There are two modes of selection that are relevant to this. One is a hover selection that can be done on a single email at a time, which enables you to move through your inbox over individual e-mails. The other mode of selection is toggling a highlight so that it is selected for some type of next action like deletion, marking, or tagging.
Can the shift key be configured so that when I use j and k to move through my inbox I create a selection over multiple e-mails?
The text was updated successfully, but these errors were encountered: