CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2016/11/15 17:24:03
Modified files:
usr.bin/tmux : cmd-find.c cmd-select-pane.c tmux.h window.c
Log message:
The target validity check used window_pane_visible but that may be false
if the pane is zoomed, so instead add a new function to just check if
the pane is actually on screen (most commands still want to accept panes
invisible by zoom). Also reject panes outside the window for various
special targets. Problem reported by Sean Haugh.