从 Sublime Text2 启动终端不起作用

从 Sublime Text2 启动终端不起作用

我有 Xubuntu14.04。我安装了以下插件来启动终端。
http://wbond.net/sublime_packages/terminal

但是,每当我使用“在此打开终端”选项时,都会出现以下错误。

未找到终端 Terminal

我对“默认”和“用户”都有以下设置:

{

// The command to execute for the terminal, leave blank for the OS default
// On OS X the terminal can be set to iTerm.sh to execute iTerm
"terminal": "",

// A list of default parameters to pass to the terminal, this can be
// overridden by passing the "parameters" key with a list value to the args
// dict when calling the "open_terminal" or "open_terminal_project_folder"
// commands
"parameters": []
}

我该如何让它工作?请提出建议!

答案1

如果你使用的是 Unity/Gnome,只需将以下行

"terminal": "",

在里面用户設定為

"terminal": "/usr/bin/gnome-terminal",

一切就绪。如果您使用的是 KDE,则命令应为konsole

祝你好运!

相关内容