I would like set the size of the shell used in the Tmux run-shell command to be the same number of columns as the currently displayed window.
Using the following command
bind \ run-shell "tput cols"
I see that the column size is always set to 80. How do I change this to be the same as the current window?
I plan on using this to update my current key binding to echo the copy buffer into my system's pasteboard. (I'm on a Mac)
bind \ run-shell "reattach-to-user-namespace bash --noprofile -c 'tmux show-buffer -b 0 | pbcopy'"
This currently wraps all lines at 80 characters. Very annoying for long lines.