Support for Terminal commands #21

닫힘
crtxcr wip/terminalkeyword 에서 master 로 3 commits 를 머지하려 합니다
3개의 변경된 파일11개의 추가작업 그리고 2개의 파일을 삭제
Showing only changes of commit 1ce3a6c397 - Show all commits

파일 보기

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