diff options
author | 2009-09-20 19:15:01 +0000 | |
---|---|---|
committer | 2009-09-20 19:15:01 +0000 | |
commit | e74cd7aa39ce2d7374d400c33d3990fe27ac6bbd (patch) | |
tree | 981d758698c2df294d848c9645cb80d54e8db487 /usr.bin/tmux/cmd.c | |
parent | Nuke unused variables and fix stupid error message. (diff) | |
download | wireguard-openbsd-e74cd7aa39ce2d7374d400c33d3990fe27ac6bbd.tar.xz wireguard-openbsd-e74cd7aa39ce2d7374d400c33d3990fe27ac6bbd.zip |
run-shell command to run a shell command without opening a window, sending
stdout to output mode.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r-- | usr.bin/tmux/cmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c index e897a56e16e..f4025d037d4 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.16 2009/08/31 20:46:19 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.17 2009/09/20 19:15:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -76,6 +76,7 @@ const struct cmd_entry *cmd_table[] = { &cmd_resize_pane_entry, &cmd_respawn_window_entry, &cmd_rotate_window_entry, + &cmd_run_shell_entry, &cmd_save_buffer_entry, &cmd_scroll_mode_entry, &cmd_select_layout_entry, |