I am having lots of issues with tmux
on Mac.
One problem I have is that I cannot bind a key in my tmux.conf
to resize my panes.
What I need is the CTRL-b: resize-pane -U 10
. I'm trying to increase the size of the pane upwards ten cells (or downwards or left or right) using a key shortcut instead of having to type this over and over (which I currently do unfortunately).
But I cannot find a way to configure this since on Mac, it seems that CTRL
and other keys work differently on Linux.
bind e resize-pane -U 10
is one line intmux
that binds the keye
with the resize? Should I have pressed thectrl-b
beforee
? 2) I am not sure what you mean withtmux source-file ~/.tmux.conf
. Doesn'ttmux
read the home directory's conf file?e
. Yes,tmux
does that, but it is faster to have it as a shortcut as well, so you don't have to restarttmux
every time you make an improvement/extension in/to the init file. – Emanuel Berg Jul 04 '13 at 19:44tmux source-file ~/.tmux.conf
is another line intmux.conf
? – Jim Jul 04 '13 at 19:46bind u source-file ~/.tmux.conf
if you want this foru
. – Emanuel Berg Jul 04 '13 at 19:50bind
and notbind-key
? – Charlie Parker Jan 28 '16 at 22:04