ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Run Task

by mgutski ST3

A Sublime Text package for running custom workspace tasks

Details

Installs

  • Total 711
  • Win 435
  • Mac 111
  • Linux 165
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13
Windows 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime Run Task

License Sublime Text

Run automated workspace tasks from Sublime Text 3 quick panel. With Run Task you can configure a list of commonly used workspace tasks, such as running unit tests and code generation, and be able to run them and analyze their results without having to leave your favorite text editor.

Screenshot

Installation

Package Control

The recommended way to install Run Task package is via Package Control. Just use the Package Control: Install Package command from the command palette and search for Run Task. By selecting this installation method any package updates will be installed automatically.

Manual

Run Task package can be installed manually by cloning this Git repository into your Sublime Text packages installation directory. Please note that by selecting this installation method any package updates will have to be installed manually.

  • Open a terminal in Sublime Text packages installation directory. A path to this directory can be found through PreferencesBrowse Packages....
  • Run

    git clone https://github.com/mgutski/sublime-run-task "Run Task"
    

Usage

Open or create the .sublime-project file, which is the file that contains your project definition.

Usage

Add Run Task.tasks top level section with JSON tasks definitions, as in the example below.

{
    "folders":
    [
        {
            "path": ".",
            "folder_exclude_patterns": [".idea", ".vscode"],
            "file_exclude_patterns": [".gitignore", ".gitattributes", ".gitmodules", ".firebaserc"]
        }
    ],
    "settings":
    {
        "tab_size": 4
    },
    "Run Task.tasks": 
    [
        {
            "name": "Run Unit Tests",
            "type": "shell",
            "command": "./Tests/run_unit_tests.sh",
            "windows": {
                "command": "wsl",
                "args": "./Tests/run_unit_tests.sh"
            }
        },
        {
            "name": "Start Local Web Server",
            "type": "shell",
            "command": "osascript",
            "args": "-e 'tell app \"Terminal\" to activate' -e 'tell app \"Terminal\" to do script \"cd ${cwd} && ./Debug/run-http-server.sh\"'",
            "windows": {
                "command": "cmd",
                "args": "/C start cmd /K .\\\\Debug\\\\run-http-server.cmd"
            },
            "show_output_panel": false
        },
        {
            "name": "Generate Docs",
            "type": "shell",
            "command": "./Source/scripts/generate_docs.sh",
            "windows": {
                "command": "wsl",
                "args": "./Source/scripts/generate_docs.sh"
            }
        }
    ]
}

Apart from shell commands, Run Task also supports running Sublime Text window commands. For example, for a task that launches a terminal, one may want to use a open_terminal_project_folder window command from Terminal package. This can be achieved with the following task definition:

{
    "name": "Start Local Web Server",
    "type": "sublime",
    "command": "open_terminal_project_folder",
    "args": {
        "parameters": ["/C", ".\\Debug\\run-http-server.cmd"]
    }
}

That's all there is to it. You can now conveniently access your custom tasks from anywhere in your project, either by running Run Task command from command palette, or using a key binding.

Task Properties

Run Task supports the following set of task properties and values:

Property Required Type Value
name YES string The task's name displayed in Sublime's quick panel.
type YES string The task's type. It can either be shell or sublime. If shell is specified, the command is interpreted as a shell command to execute. If sublime is specified, the command is interpreted as a Sublime Text window command to execute.
command YES string The command to execute. It must be a valid shell command or Sublime Text window command name, depending on the type specified. For the shell commmand to work, the specified executable must be in your PATH.
args NO string, array, or object The arguments to be passed to the command. For a task of type shell it can either be a string or array. For a task of type sublime it must be a JSON object.
windows NO object The Windows-specific command and args properties. If specified, the supplied properties will be used when the task is executed on Windows operating system.
show_output_panel NO boolean Defines whether the shell task output is to be printed to Sublime's output panel.

Variable Substitution

Run Task supports variable substitution for tasks of type shell. The substitutable variables can be used with command and args properties of task definition.

Supported variables:

Variable Substituted Value
cwd The workspace directory path.

Example:

{
    "name": "Variable Substitution Test",
    "type": "shell",
    "command": "./Debug/script.sh",
    "args": ["CWD:", "${cwd}"],
    "windows": {
        "command": "${cwd}\\Debug\\script.cmd",
        "args": ["CWD:", "${cwd}"]
    }
}

Key Bindings

The package comes with some pre-defined keyboard shortcuts. You can always configure your own shortcuts via PreferencesPackage SettingsRun TaskKey Bindings.

Command Linux & Windows macOS
Run Task Ctrl+Alt+R Ctrl+Option+R

Credits

Run Task features are highly inspired by Visual Studio Code Tasks.

License

This project is licensed under the MIT License. See the LICENSE file for details.