Sublime Forum

Terminus keybinding to focus on texteditor

#1

Terminus has different keybindings to open up a terminal. Is there also a keybinding to go back to the texteditor from the terminal without closing the terminal?

0 Likes

#2

here are my terminus keybindings:
{ “keys”: [“alt+`”], “command”: “toggle_terminus_panel” },
{ “keys”: [“alt+t”], “command”: “terminus_open”, “args”: { “cwd”: “${file_path:${folder}}” } },
{ “keys”: [“ctrl+shift+w”], “command”: “terminus_close”, “context”: [{ “key”: “terminus_view”}] },

0 Likes

#3

@bitsper2nd thanks for your input, but those keybindings close the terminus panel to focus back on the text editor. I just want a keybinding to go back to the texteditor without closing the terminus panel instead of using the mouse to click on the texteditor panel

0 Likes

#4

You can just ctrl + 1 & alt + ` to toggle the focus between the active view & the currently open Terminus panel.

1 Like

#5

@UltraInstinct05 great thx!

0 Likes

#6

I am using Kali, The alt + ` key binding doesn’t work for me
any tips

0 Likes

#7

As GajendraR says, the alt + ` keybinding does not produce the desired result on linux: it closes the terminux panel, then reopens it in focus.
What is the keybinding command for Linux which will switch focus to the Terminux panel without closing the terminal first?

0 Likes

#8

I am still looking for that … , please see my post if you found an answer

0 Likes

#9

// Toggle the default shell in panel
// { “keys”: [“alt+`”], “command”: “toggle_terminus_panel” },

My changes :
Add this line to ( prefrences -> key Bindings )
{ “keys”: [“ctrl+t”], “command”: “toggle_terminus_panel” },

0 Likes