Run any external tool with an keyboard shortcut and/or via the command palette.
- Install via PackageControl:
External Tools
- Open Preferences --> Key bindings
- Add
{ "keys": ["alt+1"], "command": "external_tools_run", "args": {"cmd": ["explorer.exe", "/select,", "$file"]}}
- Save & close
- Press
ALT+1
If you have PackageControl installed, you can use it to install the package.
Just type CTRL+SHIFT+P
(or if you're on a mac: CMD+SHIFT+P
) to bring up the command pallete and pick Package Control: Install Package from the dropdown, search and select External Tools
there and you're all set.
-
Enter directory through Preferences --> Browse Packages... in the Sublime Text menu.
-
Run the following command from your command line
git clone https://github.com/FelixBoers/sublime-external-tools.git ./ExternalTools
You can add custom keybinding by go to Settings -> Key Bindings and bind your keystrokes to the external_tools_run
command.
- Open Windows Explorer with the current file selected:
{ "keys": ["alt+1"], "command": "external_tools_run", "args": {"cmd": ["explorer.exe", "/select,", "$file"]}}
- Open Git bash in the current project root or if no project is opened in the root of the first opened folder
{ "keys": ["alt+2"], "command": "external_tools_run", "args": {"cmd": ["C:/Program Files/Git/bin/bash.exe"], "working_dir": "${project_path:$folder}" }}
In the same way you can define your own entries in the command palette (CTRL + SHIFT + P). Go to Preferences --> Package Settings --> External Tools --> Command Palette and add:
{
"caption": "Cmd here",
"command": "external_tools_run",
"args": {
"cmd": [ "cmd.exe", "/K"],
"working_dir": "${project_path:$folder}"
}
}
If you want to open the app via key binding or via the command palette you can define the app in the plugin settings Preferences --> Package Settings --> External Tools --> Settings.
This is how a configuration could look like:
{
"apps": [
{
"id": "explorer",
"name": "Explorer",
"cmd": [
"explorer.exe",
"/select,",
"$file"
]
},
{
"id": "cmd",
"cmd": ["cmd.exe", "/K"],
"working_dir": "$folder"
}
]
}
The key binding configuration should then look like:
{ "keys": ["alt+3"], "command": "external_tools_run", "args": {"id": "explorer" }}
And the command palette configuration like this:
{ "caption": "Cmd here", "command": "external_tools_run", "args": { "id": "cmd" } }
All apps defined in the plugin settings are listed if you run External Tool via the command palette.
Along to all your system environment variables the following variables are getting expanded too:
Variable | Description |
---|---|
$file | The full path to the current file, e.g., C:\Files\Chapter1.txt |
$file_path | The directory of the current file, e.g., C:\Files |
$file_extension | The name portion of the current file, e.g., txt |
$file_base_name | The name only portion of the current file, e.g., Document |
$packages | The full path to the Packages folder |
$folder | The path to the first folder opened in the current project |
$project | The full path to the current project file |
$project_path | The directory of the current project file |
$project_name | The name portion of the current project file |
$project_extension | The extension portion of the current project file |
$project_base_name | The name-only portion of the current project file |
$line_begin | The current line of the current file or the first line of the selection |
$line_end | The current line of the current file or the last line of the selection |
$line | Same as $line_begin |
Placeholder variables are supported too:
${project_name:Default} # Use 'Default' as project name if no project is open
${project_path:$folder} # If no project opened use first folder
The name of the placeholder is case sensitive!
ConEmu with Git bash in current folder
{
"apps": [
{
"id": "conemu_git",
"name": "ConEmu (Git bash)",
"cmd": [
"C:\\\\Program Files\\\\ConEmu\\\\ConEmu64.exe",
"/Single",
"/Dir",
"${folder}",
"/Run",
"{Git bash}"
]
}
]
}
Windows Explorer with current file selected
{
"apps": [
{
"id": "explorer",
"name": "Explorer",
"cmd": [
"explorer.exe",
"/select,",
"$file"
]
}
]
}