You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have a shortcut to focus the terminal, currently it's possible from the main menu but it's quite annoying to do it with the mouse.
The text was updated successfully, but these errors were encountered:
putting this in the keymap.cson almost did the job:
'body':
'alt-f12': 'window:toggle-bottom-dock'
the problem is that keymap does not work when the terminal has the focus, the x-terminal-reloaded:unfocus works only from the command menu (not with the shortcut) and I'm not sure where the focus goes, surely not on the editor (edit, looking at the code, the focus is given to the whole workspace).
Isn't there a way to give the focus to the latest component that had it?
don't know a way to find the last component, but could just use atom.workspace.getActiveTextEditor() and change focus to the editor, notice that's what happens with window:toggle-bottom-dock
for the keybinding xterm.js is swallowing alt-f12 right? I use a ctrl-` which works, though then run into this
Hey, great work here so far!
It would be great to have a shortcut to focus the terminal, currently it's possible from the main menu but it's quite annoying to do it with the mouse.
The text was updated successfully, but these errors were encountered: