diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:03:59 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:03:59 +0100 |
commit | b4c633cc40cd3d5963e24e6d560bc2c7f6553000 (patch) | |
tree | 3c94bc6f3d3b3924b12f791c2adb5a664ecdd93b /cmd-select-pane.c | |
parent | 8f364053ca9242dafcddc304aed49aac80132ba3 (diff) | |
parent | 54c5070767d58a4fb0559eb9b3ee19caa72c4a73 (diff) | |
download | rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.tar.gz rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.tar.bz2 rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'cmd-select-pane.c')
-rw-r--r-- | cmd-select-pane.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-select-pane.c b/cmd-select-pane.c index 03e48513..21bda8e4 100644 --- a/cmd-select-pane.c +++ b/cmd-select-pane.c @@ -77,7 +77,7 @@ cmd_select_pane_exec(struct cmd *self, struct cmdq_item *item) server_unzoom_window(w); window_redraw_active_switch(w, lastwp); if (window_set_active_pane(w, lastwp)) { - cmd_find_from_winlink(current, wl); + cmd_find_from_winlink(current, wl, 0); server_status_window(w); server_redraw_window_borders(w); } @@ -156,7 +156,7 @@ cmd_select_pane_exec(struct cmd *self, struct cmdq_item *item) } window_redraw_active_switch(w, wp); if (window_set_active_pane(w, wp)) { - cmd_find_from_winlink_pane(current, wl, wp); + cmd_find_from_winlink_pane(current, wl, wp, 0); hooks_insert(s->hooks, item, current, "after-select-pane"); server_status_window(w); server_redraw_window_borders(w); |