Support for Terminal commands #21

zavřený
crtxcr chce sloučit 3 commity z větve wip/terminalkeyword do master
Zobrazuji pouze změny commitu 1ce3a6c397 - Zobrazit všechny commity

Zobrazit soubor

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