open-bash-git
Open the Terminal (OSX, Linux) or Git-Bash (Windows) in the given directory via context menu or keyboard shortcut.
Open Terminal Here
Open the Terminal (Mac OS X, Linux) or Git-Bash terminal (Windows) in the given directory via context menu or keyboard shortcut.

Keyboard shortcuts
Open the Terminal in the current directory
| Platform | Keyboard shortcut |
|---|---|
| Mac OS X | ctrl-cmd-t |
| Windows | ctrl-alt-t |
| Linux | ctrl-alt-t |
Open the Terminal in the project directory
| Platform | Keyboard shortcut |
|---|---|
| Mac OS X | alt-cmd-t |
| Windows | ctrl-alt-shift-t |
| Linux | ctrl-alt-shift-t |
FAQ
How to open a new tab instead of a new window?
Mac OS X
- Open Automator and select
Applicationas new document. - From the Library, add
Run Applescriptas Automator action. - Replace the sample AppleScript code with the code from terminal-tab.scpt.
- Save the Automator app as
TerminalTab.appto your Applications folder. - In the
open-terminal-heresettings, setCommandtoopen -a TerminalTab.app "$PWD".
Ubuntu Linux
- Install xdotool:
sudo apt-get install -y xdotool - Download terminal-tab.sh and make it executable:
chmod +x ./terminal-tab.sh - Move the script to a directory in your path:
sudo mv ./terminal-tab.sh /usr/local/bin/terminal-tab - In the
open-terminal-heresettings, setCommandtoterminal-tab.