Hi , I recently Installed Terminus and some issues , my initial goal was :
- Make Terminus’s terminal defaultly opened : I wanted it to be opened when I open sublime text , I can toggle it off from the command palette if I want to
- I want to switch focus between main tab and terminus when I hit
ctrl+g
So to achieve this what I did was , I went to keybindings and made it like this :
[
{ "keys": ["ctrl+g"], "command": "toggle_terminus_panel" },
{ "keys": ["ctrl+i"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
]
I changed the built-in sublime text ctrl+g
function to ctrl+i
and made ctrl+g = "toggle_terminus_panel"
, but what this did was instead of switching focus it was closing terminal when I hit ctrl+g
and I couldnt make terminus always opened as default no matter what I tried . It would be great if you could tell me how can I create the terminus setup I have in my mind.