+1 and kind of can’t believe this isn’t a configurable hotkey yet. The closest I can do at the moment is the following:
- CTRL+O to open quick switcher
- ENTER to open top document (which I think is always the current document)
- CTRL+SHIFT+E (not default) to switch to preview mode
If anybody else uses Autokey, here’s the script I wrote (mapped to CTRL+E):
keyboard.send_keys("<ctrl>+o")
keyboard.send_keys("<ctrl>+<enter>")
time.sleep(0.25)
keyboard.send_keys("<ctrl>+<shift>+e")
Edit: Splitting the current pane horizontally or vertically will also open the current document. So here’s a variation of the above script that works horizontally (mapped the split command to CTRL+ALT+DOWN).
keyboard.send_keys("<ctrl>+<alt>+<down>")
time.sleep(0.25)
keyboard.send_keys("<ctrl>+<shift>+e")
Note that I can’t get either of these solutions to link the two panes’ scrolling.