Tmux select an appropriate window from the list
Solution 1:
Ctrl b, w
will list all windows. To rebind it, you may put these lines to your .tmux.conf
# -n means it doesn't require ctrl+b as prefix.
bind-key -n F2 next-window #f2 goes to next window.
bind-key -n F1 previous-window
bind-key -n f3 choose-window #f3 displays window list.