> > On Sun, Aug 14, 2016 at 11:45 AM, Yuan Zeng <[email protected]> wrote: > > I set "set-option -g -q mouse on" in ~/.tmux.conf file. > > However, I still can not change pane size using mouse. > > > > Can anybody help me with that? Or tell me other ways in changing pane > size? >
This works for me in tmux 2.1 and newer versions. set -g mouse on I believe that pane resizing is enabled by default once you do the above, because I have this in my config too (the #default comment): bind -T root MouseDrag1Border resize-pane -M # default Actually to prevent that pane resizing, I do this: unbind -T root MouseDrag1Border # disable drag pane border to resize -- Kaushal Modi -- You received this message because you are subscribed to the Google Groups "tmux-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
