Integrated Terminal in Sublime Text with Terminus Package

David Carr

Development Tools

Table of Contents

I adore Sublime Text, I'm often jumping to other editors to use an integrated terminal but not anymore! A new package called Terminus written by Randy Lai adds support for an integrated terminal panel and a view! I cannot understate how awesome this is! I've been trying to find a package to add terminal support for years! 

Terminus is heavily inspired by TerminalView another Sublime Text package that adds a terminal to a view. 

What I love about Terminus is you can add a toggleable panel or a view. 

Install

To install it simple open Package Control and search for Terminus

Usage

There are default key bindings 

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

I prefer to use ctrl+` to toggle you can easily change them with custom key bindings:

This toggles the panel but also opens in the current root folder

{
	"keys": ["ctrl+`"], "command": "toggle_terminus_panel", "args": {
        "config_name": "Default",
        "cwd": "${folder}"
    }
}

I also like to have the option to open Terminus in a view to this time using alt+`

{
	"keys": ["alt+`"], "command": "terminus_open", "args": {
        "config_name": "Default",
        "cwd": "${folder}"
    }
}

 

Laravel Modules Your Logo Your Logo Your Logo

Become a sponsor

Help support the blog so that I can continue creating new content!

Sponsor

My Latest Book

Modular Laravel Book - Laravel: The Modular way

Learn how to build modular applications with Laravel Find out more

Subscribe to my newsletter

Subscribe and get my books and product announcements.

Learn Laravel with Laracasts

Faster Laravel Hosting

© 2006 - 2024 DC Blog. All code MIT license. All rights reserved.