How to open the iTerm in the sublime text 3

iterm2sublimetext3terminal

I installed the Terminal package in the sublime3, setting in the package:

{
"terminal": "iTerm.sh",
"parameters": []
}

But when I press the command + shift + T buttons together,there is no response,Why?

Best Answer

For iTerm2 on Sublime Text 3 with Bond's terminal package do the following:

  • In Sublime 3, go to Preferences > Package Settings > Terminal > Settings - User

Paste the following & save:

{
    "terminal": "iTerm2-v3.sh",
    "parameters": ["--open-in-tab"]
}

Test opening project folder on iTerm2 with cmd + shift + T (Working on Sublime 3 build 3131)

Terminal package site reference:

enter image description here