How to open the iTerm in the sublime text 3?

K.King picture K.King · Aug 14, 2016 · Viewed 11.8k times · Source

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?

Answer

Syden picture Syden · Apr 27, 2017

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