0

I installed the plugin Sublime Terminal in Sublime Text 2. The shortcut to open the terminal in the correct folder is CTRL+SHIFT+ALT+T.

When I press the shortcut keys then Windows Powershell is opened.

Can I configure this plugin so it opens PuTTy and not Windows Powershell

Thanks

Ozkan
  • 3,880
  • 9
  • 47
  • 78

1 Answers1

2

Go to Preferences -> Package Settings -> Terminal and select Settings-User, which should open a blank file. Copy the content below into the file, changing the path to the location of your putty.exe file.

{
    "terminal": "c:\\Program Files\\PuTTY\\putty.exe"
}

Save the file, and you should now be able to hit CtrlAltShiftT to open PuTTY.

MattDMo
  • 100,794
  • 21
  • 241
  • 231
  • Thank you so much. One more question: Is there a possibility to run a shortcut of PuTTy and not the exe itself? Because then the shortcut can have extra parameters like loading a putty session, auto login with login and password – Ozkan Mar 14 '14 at 16:51