Support for Terminal commands #21

بسته شده
crtxcr قصد ادغام 3 تغییر را از wip/terminalkeyword به master دارد
Showing only changes of commit 1ce3a6c397 - Show all commits

مشاهده پرونده

@ -123,7 +123,7 @@ void Window::executeConfig(const EntryConfig &config)
if(config.isTerminalCommand) if(config.isTerminalCommand)
{ {
QString cmd = settingsProvider->getTerminalCommand(); QString cmd = settingsProvider->getTerminalCommand();
cmd.replace("%c", config.command); cmd.replace("%c", config.command + " " + config.arguments.join(' '));
QProcess::startDetached(cmd); QProcess::startDetached(cmd);
} }
else else