简体   繁体   中英

Get back a running terminal in sublime-text's terminus

I am using the Sublime text terminus extension. If I open the terminal in the panel and run a job (Say a python script) and while the script is running if I do ctrl+f to open the find and replace panel, the open terminal disappears because sublime supports only 1 panel.

But if I open the terminal in panel again, it opens a new terminal, and not the same one where the job was running and I am unable to get the job results.

If I set up localhost in the terminus terminal and remove it using ctrl+f, the localhost is kept running which indicates that sublime doesn't terminate the job while closing the terminal.

Is there a way to get the same terminal back?

The list of available panels is available via the Panel Chooser; it displays all panels available, which includes those built in and those added by packages:

面板选择器

If you're on ST3, left click it to open the menu; on ST~~4~~ right click to get the menu.

Note also that the Terminus README includes information related to toggling panels, such as this default key binding that toggles the panel open and closed and will create it if it's not present:

    { 
        "keys": ["alt+`"], "command": "toggle_terminus_panel"
    }

There are also example key bindings for having more than one Terminus panel at a time demonstrated in this tips video for Terminus (I am the author of the video); the panel chooser is also demonstrated there.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM