It is hard to say without additional information. However, a good way to debug such problems is to look in the console. To open the elevated console, press Ctrl + ` or select" View "β" Show Console "in the main menu. Now click the shortcut again and see if any debug message is displayed.
If you suspect that something is wrong with the keywords, you can run view.run_command('open_terminal') from the console. This is the command that is issued on cmd+shift+t (see package configuration file .)
As a note. I did not know that this package exists, instead I wrote a few lines to do just that. This can be useful if you want to play using the terminal or the same yourself.
import sublime_plugin, subprocess class OpenTerminal(sublime_plugin.TextCommand): def run (self, edit): if self.view.file_name(): cwd = '/'.join(self.view.file_name().split('/')[:-1]) else: cwd = self.view.window().project_data()['folders'][0]['path'] subprocess.Popen(['xfce4-terminal', '--working-directory=' + cwd])
source share