Support for Terminal commands #21

Cerrada
crtxcr desea fusionar 3 commits de wip/terminalkeyword en master
Mostrando solo los cambios del commit 1ce3a6c397 - Mostrar todos los commits

Ver fichero

@ -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