Awesome
No longer under active development.
Glue
Glue is a cross-platform, extensible plug-in for Sublime Text 2 and 3 that connects your favorite editor to your shell.
Detailed documentation is available on http://gluedocs.readthedocs.org.
Confirm Your PATH
Before you get started, please confirm your system PATH string in the Glue settings. Here are the instructions.
Launch
Open with Right Click Menu
Open with the Command Palette
Open with Keybinding
Ctrl - Alt - G
Enter Commands
Use the command input box at the bottom of the screen to enter system commands just like you would in your terminal:
and the standard output is displayed in an editor view.
System Utilities
It works with system utilities:
grep
cURL
Scripting Languages
It works with scripting languages:
Inter-Process Communication
Pipelining data between processes works. You get the standard output from the final executable in the sequence:
Version Control
Version control tasks are accessible inside the editor:
Compile, Unit Test, Profile, Minify, Compress...
You get the picture.
Navigation & Working Directory State
Glue includes its own version of the cd
command that allows you to navigate around your directory structure while maintaining your current working directory state between calls to the shell.
File Management
Open files in the Sublime Text editor by file path:
█ glue open <filepath> [filepath2] [...]
or by wildcard pattern:
█ glue wco <wildcard>
and create new files with:
█ glue new
Available Glue Commands
Glue includes its own set of commands to perform common tasks. You can extend these with aliases (see information below).
Usage examples with available command arguments are in the documentation.
<table> <tr><th>Command</th><th>Description</th></tr> <tr> <td>cd</td><td>change directory</td> </tr> <tr> <td>exit</td> <td>exit the Glue terminal</td> </tr> <tr> <td>glue browse</td> <td>open URL or local project file in default browser</td> </tr> <tr> <td>glue clear</td> <td>clear text in the Glue view</td> </tr> <tr> <td>glue finder</td> <td>reveal current directory (default) or optional path in finder</td> </tr> <tr> <td>glue goto</td> <td>Sublime Text GoTo Anything search</td> </tr> <tr> <td>glue help</td> <td>view help documentation in Glue view</td> </tr> <tr> <td>glue localhost</td> <td>open default web browser to local server</td> </tr> <tr> <td>glue new</td> <td>open a new Sublime Text buffer</td> </tr> <tr> <td>glue open</td> <td>open one or more project files by filepath</td> </tr> <tr> <td>glue path</td> <td>display the system PATH setting that is used by Glue</td> </tr> <tr> <td>glue user</td> <td>display alphabetized list of your Glue user extensions</td> </tr> <tr> <td>glue wco</td> <td>open one or more files by wildcard pattern</td> </tr> </table>Extend Sublime Text With Glue Extensions
You can build Sublime Text extensions with your favorite language or extend Sublime Text with any system utility using Glue command extensions. These are aliases for system commands that can be called from the Glue command line using the syntax:
█ glue <your-command> [optional arguments]
You have the option to pass additional command line arguments, clipboard data, or the current working directory path to the mapped system command with template tags.
The Glue-Commands Directory
Create a directory in your Sublime Text Packages
directory (Preferences > Browse Packages
) that is named Glue-Commands
.
The glue.json File
Create a new file in this directory with the following path Glue-Commands/glue.json
.
Use the glue.json
file to create Glue extensions with key = command name
to value = command string
mapping.
Example
You could make a command that executes a local image compression shell script on the path /Users/me/scripts/cruncher.sh
with the following syntax:
{
"crunch": "/Users/me/scripts/cruncher.sh {{args}}"
}
Then use it in Glue like this:
█ glue crunch image.png
The mapped system command is executed as:
/Users/me/scripts/cruncher.sh image.png
in your current working directory and is accessible in any Sublime Text project.
Make as many as you'd like. You can use the following command to reference an alphabetized list of your extensions:
█ glue user
More detailed extension documentation (including additional examples) is available here.
Changelog
The changelog is available here.