/OpenTerminalHere

Adds "Open Terminal Here" context menu to side bar with custom command to run.

Primary LanguagePython

OpenTerminalHere

Sublime Text plugin which adds "Open Terminal Here" side bar action. Basically Terminal does the same thing but better so there is no need to install this plugin.

Default configuration is

{
    "config": {
        "linux": "gnome-terminal",
        "osx": "osx-term",
        "windows": "cmd"
    },
    "commands": {
        "gnome-terminal": "gnome-terminal --working-directory ${specified_folder}",
        "zorin-light-term": "exo-open --launch TerminalEmulator --working-directory ${specified_folder}",
        "osx-term": "open -a Terminal ${specified_folder}",
        "cmd": "cmd.exe /d ${specified_folder}",
    },
}

To change user settings go to Preferences -> Package Settings -> Open Terminal Here -> Settings - User.