diff options
author | 2013-10-10 12:04:13 +0000 | |
---|---|---|
committer | 2013-10-10 12:04:13 +0000 | |
commit | ae5cff8aa10720f10c6d35a641de2cd09ee3ef72 (patch) | |
tree | a02f0870095d2f5bf1d0512f6d51af0d2738fc2a /usr.bin/tmux/cmd-split-window.c | |
parent | First period not last for host_short, from Michael Scholz. (diff) | |
download | wireguard-openbsd-ae5cff8aa10720f10c6d35a641de2cd09ee3ef72.tar.xz wireguard-openbsd-ae5cff8aa10720f10c6d35a641de2cd09ee3ef72.zip |
Restore missing key binding for %, from Chris Johnsen.
Diffstat (limited to 'usr.bin/tmux/cmd-split-window.c')
-rw-r--r-- | usr.bin/tmux/cmd-split-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-split-window.c b/usr.bin/tmux/cmd-split-window.c index 83e92248c92..f6bea1c0c44 100644 --- a/usr.bin/tmux/cmd-split-window.c +++ b/usr.bin/tmux/cmd-split-window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-split-window.c,v 1.43 2013/10/10 12:00:23 nicm Exp $ */ +/* $OpenBSD: cmd-split-window.c,v 1.44 2013/10/10 12:04:13 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -37,7 +37,7 @@ const struct cmd_entry cmd_split_window_entry = { "[-dhvP] [-c start-directory] [-F format] [-p percentage|-l size] " CMD_TARGET_PANE_USAGE " [command]", 0, - NULL, + cmd_split_window_key_binding, cmd_split_window_exec }; |