diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-05-10 18:09:52 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-05-10 18:09:52 +0000 |
commit | 8fc11a4bb842513152f53be32f5d26acf567d914 (patch) | |
tree | 67319f637c4ee0af5aa7995a3f286b0bb4695e82 /usr.bin | |
parent | c2e749ce9977afc1368916e031b551400ef29f2f (diff) |
Fix a typo in previous (, -> :).
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/format.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/format.c b/usr.bin/tmux/format.c index e393430fef6..155ef81d239 100644 --- a/usr.bin/tmux/format.c +++ b/usr.bin/tmux/format.c @@ -1,4 +1,4 @@ -/* $OpenBSD: format.c,v 1.192 2019/05/10 18:04:06 nicm Exp $ */ +/* $OpenBSD: format.c,v 1.193 2019/05/10 18:09:51 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -71,8 +71,8 @@ static void format_defaults_winlink(struct format_tree *, struct winlink *); "New Session,s,new-session|" \ "New Window,w,new-window" #define DEFAULT_WINDOW_MENU \ - "Swap Left,l,swap-window -t,-1|" \ - "Swap Right,r,swap-window -t,+1|" \ + "Swap Left,l,swap-window -t:-1|" \ + "Swap Right,r,swap-window -t:+1|" \ "#{?pane_marked_set,,#[dim]}Swap Marked,s,swap-window|" \ "|" \ "Kill,X,kill-window|" \ |