myalcin81 / sublimetext-console-exec

Run a Sublime Text command in a console window. Supports both Sublime Text 2 & 3.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Console Exec

Plugin for Sublime Text to execute a command in a console window. After the process exits, the console remains open and displays "Press any key to exit" before closing.

This plugin is based on the exec command shipped with Sublime Text, and uses the launcher that ships with Crimson Editor to wait for a keypress before closing the window.

Running a Flask application screenshot

Source available on Github.

Why?

Aside from personal preference of having an external console in web projects,

  • Sublime leaves your background process running when you quit
  • Rebuilding a project overwrites your running process, leaking processes if you're not careful
  • Certain environments such as Pyglet will not run within the integrated console window

This plugin ties these loose ends in a familiar way.

Usage

In any .sublime-build file add the following line to run it in a console:

"target": "console_exec"

For example, here's a modified Python.sublime-build file:

{
    "cmd": ["python", "-u", "$file"],
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python",
    "target": "console_exec"
}

Note: you can find the appropriate build file from "Browse Packages..."

Installation

With Sublime Package Control, simply

  1. Select Package Control: Install Package from the command palette
  2. Locate ConsoleExec and press enter to install it

Manual installation (advanced)

Clone this repository into the Packages directory. To see where it's located enter print sublime.packages_path() in the console.

About

Run a Sublime Text command in a console window. Supports both Sublime Text 2 & 3.

License:MIT License


Languages

Language:Python 100.0%