Re: strange pane navigation issue in 1.5

2011-10-28 Thread Nicholas Marriott
What do you set the prefix option to or do you leave it set to C-b? Does C-b Up and C-b Down work as expected? You should bind send-prefix to the key where you want eg prefix C-a to send C-a to the window itself. On Thu, Oct 27, 2011 at 04:06:03PM -0700, Keith Miller wrote: # Bind keys

strange pane navigation issue in 1.5

2011-10-27 Thread Keith Miller
In version 1.5 whenever I try to navigate panes with send-prefix Up (or Down), it no longer works as expected. It seems to only work one out of twenty times or so, and the rest of the time tmux just prints the string [A (for Up) and [B (for Down). Is anyone aware of this issue and/or of a

Re: strange pane navigation issue in 1.5

2011-10-27 Thread Thomas Adam
On Thu, Oct 27, 2011 at 01:39:06PM -0700, Keith Miller wrote: In version 1.5 whenever I try to navigate panes with send-prefix Up (or Down), it no longer works as expected. It seems to only work one out of twenty times or so, and the rest of the time tmux just prints the string [A (for Up)

Re: strange pane navigation issue in 1.5

2011-10-27 Thread Nicholas Marriott
I don't understand what you're doing... send-prefix never took any arguments, do you mean send-keys? send-keys doesn't go though the command parser so you can't use it to switch panes. On Thu, Oct 27, 2011 at 01:39:06PM -0700, Keith Miller wrote: In version 1.5 whenever I try to navigate

Re: strange pane navigation issue in 1.5

2011-10-27 Thread Keith Miller
# Bind keys bind C-asend-prefix And here are the list-key bindings: bind-key -r Up select-pane -U bind-key -rDown select-pane -D And they no longer work as expected. On Thu, Oct 27, 2011 at 16:02, Nicholas Marriott nicholas.marri...@gmail.com wrote: So what are you setting