Terminal
Launch terminals from the current file or the root project folder
Details
Installs
- Total 638K
- Win 328K
- OS X 167K
- Linux 143K
Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 96 | 152 | 197 | 221 | 189 | 206 | 194 | 125 | 139 | 149 | 184 | 188 | 211 | 194 | 121 | 142 | 190 | 188 | 275 | 210 | 209 | 150 | 165 | 185 | 247 | 253 | 214 | 195 | 117 | 142 | 213 | 212 | 206 | 224 | 186 | 123 | 152 | 181 | 184 | 215 | 225 | 212 | 131 | 128 | 197 | 224 |
OS X | 32 | 48 | 57 | 59 | 74 | 69 | 66 | 37 | 31 | 60 | 65 | 61 | 77 | 58 | 44 | 49 | 59 | 82 | 66 | 73 | 55 | 49 | 40 | 50 | 80 | 80 | 85 | 65 | 47 | 41 | 76 | 65 | 67 | 88 | 72 | 41 | 51 | 68 | 71 | 71 | 75 | 59 | 49 | 48 | 63 | 78 |
Linux | 27 | 64 | 61 | 67 | 63 | 74 | 60 | 44 | 63 | 70 | 74 | 53 | 82 | 60 | 65 | 61 | 82 | 70 | 76 | 67 | 64 | 39 | 57 | 71 | 89 | 96 | 93 | 68 | 61 | 62 | 66 | 88 | 68 | 85 | 62 | 47 | 60 | 61 | 66 | 67 | 82 | 67 | 66 | 52 | 77 | 80 |
Readme
- Source
- raw.githubusercontent.com
Sublime Terminal
Shortcuts and menu entries for opening a terminal at the current file, or the current root project folder in Sublime Text.
Features
- Opens a terminal in the folder containing the currently edited file
- Opens a terminal in the project folder containing the currently edited file
Installation
Download Package Control and use the Package Control: Install Package command from the command palette. Using Package Control ensures Terminal will stay up to date automatically.
Usage
- Open Terminal at File Press ctrl+shift+t on Windows and Linux, or cmd+shift+t on OS X
- Open Terminal at Project Folder Press ctrl+alt+shift+t on Windows and Linux, or cmd+alt+shift+t on OS X
In addition to the key bindings, terminals can also be opened via the editor context menu and the sidebar context menus.
Package Settings
The default settings can be viewed by accessing the Preferences > Package Settings > Terminal > Settings – Default menu entry. To ensure settings are not lost when the package is upgraded, make sure all edits are saved to Settings – User.
- terminal
- The terminal to execute, will default to the OS default if blank. OS X users may enter iTerm.sh to launch iTerm if installed.
- Default: “”
- parameters
- The parameters to pass to the terminal. These parameters will be used if no custom parameters are passed via a key binding.
- Default: []
- env
- The environment variables changeset. Default environment variables used when invoking the terminal are inherited from sublime.
- The changeset may be used to overwrite/unset environment variables. Use
null
to indicate that the environment variable should be unset. - Default: {}
Examples
Here are some example setups:
Cmder on Windows
{
// Replace with your own path to cmder.exe
"terminal": "C:\\Program Files\\cmder_mini\\cmder.exe",
"parameters": ["/START", "%CWD%"]
}
xterm on GNU/Linux
{
"terminal": "xterm"
}
gnome-terminal for CJK users on GNU/Linux
{
"terminal": "gnome-terminal",
// Unset LD_PRELOAD which may cause problems for sublime with imfix
"env": {"LD_PRELOAD": null}
}
iTerm on OS X
{
"terminal": "iTerm.sh"
}
iTerm on OS X with tabs
{
"terminal": "iTerm.sh",
"parameters": ["--open-in-tab"]
}
iTerm2 v3 on OS X
{
"terminal": "iTerm2-v3.sh"
}
Hyper on OS X
{
"terminal": "hyper.sh"
}
Custom Parameters
With the parameters argument to the open_terminal and open_terminal_project_folder commands, it is possible to construct custom terminal environments.
The following is an example of passing the parameters -T 'Custom Window Title' to a terminal. Please note that this example is just an example, and is tailored to the XFCE terminal application. Your terminal may use the -T
option for some other features or setting. Custom key bindings such as this would be added to the file opened when accessing the Preferences > Key Bindings – User menu entry (the file name varies by operating system).
{
"keys": ["ctrl+alt+t"],
"command": "open_terminal",
"args": {
"parameters": ["-T", "Custom Window Title"]
}
}
A parameter may also contain the %CWD% placeholder, which will be substituted with the current working directory the terminal was opened to.
{
"keys": ["ctrl+alt+t"],
"command": "open_terminal",
"args": {
"parameters": ["-T", "Working in directory %CWD%"]
}
}