Sublime Text 3 - integrated terminal?

后端 未结 6 1987
悲&欢浪女
悲&欢浪女 2021-02-07 01:04

I normally use the WebStorm IDE for Node.js and FE JavaScript development. However I was thinking of using Sublime Text 3 since I am running out of computing power on a crappy o

相关标签:
6条回答
  • 2021-02-07 01:31

    In sublime 3,

    1. ctrl + shift + p search Package Control: Install Package
    2. Search and install TerminalView
    3. to set shortcuts, go to Preferences -> Key Bindings

    on right side Pane paste this,

    [
       { "keys": ["ctrl+shift+t"], "command": "terminal_view_open" }
    ]
    
    1. Now ctrl+shift+t is your shortcuts
    0 讨论(0)
  • 2021-02-07 01:37

    The below original answer is now outdated; see below answer by Svish.


    I was wondering the same thing a while back, and I believe the answer is: no.

    There's no good terminal integration in ST3, except, maybe, for Terminal, which simply takes you to the terminal from any given project folder. Works ok, but not sure how much it really saves.

    No way to have it in the ST3 window AFAIK.

    0 讨论(0)
  • 2021-02-07 01:41

    I tried Sublime package - TerminalView, quickly realized I couldn't copy paste things. Tried on MacOS.

    Terminus(https://github.com/randy3k/Terminus ) looks good to me, it has two options

    (i) opens in a tab(view)

    (ii) opens also in a panel. (which I prefer most)

    0 讨论(0)
  • 2021-02-07 01:43

    I installed the Sublime package TerminalView that can show a terminal window within Sublime in a separate tab.

    It works with MacOS or Linux but is no longer actively supported.

    Installation:

    1. Open the command palette (Cmd+Shift+P on Mac, Ctrl+Shift+P on Windows) and find Package Control: Install Package
    2. Search for TerminalView and hit Return to install.

    The terminal windows has a few flaws (at least on macOS) as it seems to conflict with Sublime's keyboard shortcuts. I however use it only to automatically run unit tests when the edited program code changes. Therefore it works just fine. In that case it works best if I show the terminal window below the text editor. You can do so in the menu View > Layout > Rows: 2.

    0 讨论(0)
  • 2021-02-07 01:50

    I prefer Terminus and it's the first cross platform terminal for Sublime Text. Check this video it might help you

    0 讨论(0)
  • 2021-02-07 01:53

    Terminus does this. Supports both Unix and Windows. Works great.

    0 讨论(0)
提交回复
热议问题