I have a shortcut defined to start logging a pane to a file, and another to stop logging. The shortcuts are active. These are the commands in my .tmux.conf:
bind-key H pipe-pane "cat >>$HOME/tmux.log"
bind-key h pipe-pane
By pressing C-b ? I am able to see the definition:
H: pipe-pane "exec cat >>/home/myuser/tmux.log"
h: pipe-pane
The idea is that C-b H will start logging and C-b h will stop it, for the current pane. It is clear that different panes will collide, but I am not worried about this now. I just want logging to work, and it does not. The shortcuts seem to work fine, and the file is created alright:
-rw-r--r-- 1 myuser mygroup 0 2012-04-28 11:21 tmux.log
But it always has size 0. Even after closing. Nothing, never ever, gets written to it. Any ideas on how to debug this issue?
This is the only gripe I have with tmux compared to screen, where logging has always been a simple task, working out of the box without any configuration needed.