Skip to content
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

command to go to next/previous mail pane? #65

Closed
anthonymvicente opened this issue Jan 24, 2021 · 4 comments
Closed

command to go to next/previous mail pane? #65

anthonymvicente opened this issue Jan 24, 2021 · 4 comments

Comments

@anthonymvicente
Copy link

Not sure if there's already a command to do this, but I use the F6/shift+F6 command to move between the mail panes regularly, but can't seem to find a command to bind to. I'd like to use the same shortcuts, but with a different key. Is this something tbkeys can do?

@morat523035
Copy link

Try the following main binding keys in settings using the tbkey addon.

1 - switch focus to next pane i.e. folder to thread to message
shift+1 - switch focus to previous pane

{
  "1": "window.SwitchPaneFocus(window.event);",
  "shift+1": "window.SwitchPaneFocus(window.event);"
}

Tips...

http://forums.mozillazine.org/viewtopic.php?p=14872763#p14872763

@anthonymvicente
Copy link
Author

This is great, thank you!

@john-g-davies
Copy link

Unfortunately this doesn't seem to work in TB 115.13 with tbkeys-lite:

Try the following main binding keys in settings using the tbkey addon.

1 - switch focus to next pane i.e. folder to thread to message shift+1 - switch focus to previous pane

{
  "1": "window.SwitchPaneFocus(window.event);",
  "shift+1": "window.SwitchPaneFocus(window.event);"
}

Tips...

http://forums.mozillazine.org/viewtopic.php?p=14872763#p14872763

@morat523035
Copy link

morat523035 commented Aug 3, 2024

You cannot run arbitrary javascript with tbkeys-lite. There is a tbkeys.xpi link on the GitHub releases page.

You can use the default F6 and Shift+F6 shortcuts to switch between Spaces Menu Button, Global Search Bar, Folder Pane, Thread Pane and Message Pane in Thunderbird 115.

Keyboard shortcuts - Moving around Thunderbird
http://support.mozilla.org/kb/keyboard-shortcuts-thunderbird#w_moving-around-thunderbird

The first and second examples don't work as most users would expect in Thunderbird 115.

{
  "1": "window.SwitchPaneFocus(window.event);",
  "shift+1": "window.SwitchPaneFocus(window.event);"
}
{
  "f1": "window.SwitchPaneFocus(window.event);",
  "shift+f1": "window.SwitchPaneFocus(window.event);"
}
{
  "ctrl+1": "window.SwitchPaneFocus(window.event);",
  "ctrl+shift+1": "window.SwitchPaneFocus(window.event);"
}

The first example would type "1" when the Global Search Bar is focused.

The second example would run the Get Help command when the Global Search Bar is focused.

Similar issue
http://github.com/wshanks/tbkeys/issues/154

The third example works correctly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants