summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Burke <rich.g.burke@gmail.com>2019-02-27 21:50:55 +0000
committerRichard Burke <rich.g.burke@gmail.com>2019-02-27 22:11:24 +0000
commit5f7826fc44a7f137b6e8f7d8608fe51a2d683f78 (patch)
tree53f86ebd10df2750ae5b3b72985249d0abc6164e
parent9d5590ccc73e7ea03d134c3f82fda01bd6c05e97 (diff)
Run shell commands invoked with ! in the controlling terminal
-rw-r--r--cmd/grv/shell_command_processor.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/grv/shell_command_processor.go b/cmd/grv/shell_command_processor.go
index 9bf7864..659c156 100644
--- a/cmd/grv/shell_command_processor.go
+++ b/cmd/grv/shell_command_processor.go
@@ -25,7 +25,7 @@ const (
var shellCommandPrefixOutputType = map[rune]ShellCommandOutputType{
'@': NoOutput,
- '!': WindowOutput,
+ '!': TerminalOutput,
}
// OutputType returns the ShellCommandOutputType the provided shell command prefix maps to