Anybody know if it's possible to move between terminal windows (panes in tmux lingo) "clockwise" and "anti-clockwise"?
tmux 1.8 Released
21–30 of 162 posts
Re: tmux 1.8 Released
#22Changelog: http://sourceforge.net/p/tmux/tmux-code/ci/master/tree/CHANG...
Re: tmux 1.8 Released
#23Should i finally switch from screens to tmux?
Definitely recommend the switch. You might be dreading it, but two days into tmux you won't regret it. It took many weeks trying to convince myself screen is better until I actually tried tmux out.
Re: tmux 1.8 Released
#24What is the simplest way to install tmux 1.8 on Ubuntu 12.04?? Running `sudo apt-get install tmux` puts tmux 1.6 on my system...
Re: tmux 1.8 Released
#25Alternatively, I never figured out how to select / copy text just as fast in tmux / vim / etc as with the mouse.
Re: tmux 1.8 Released
#26Re: tmux 1.8 Released
#27Earlier quoted context omitted.
pushd /tmp && \ wget 'http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.8/tmux-1.8.tar.gz?r=http%3A%2F%2Ftmux.sourceforge.net%2F&ts=1364579710&use_mirror=garr' && \ gunzip
Shouldn't you be using checkinstall instead of 'make install' to make removal of the package easier in the future?
rm -rf ~/installs/tmux-1.8Re: tmux 1.8 Released
#28Earlier quoted context omitted.
pushd /tmp && \ wget 'http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.8/tmux-1.8.tar.gz?r=http%3A%2F%2Ftmux.sourceforge.net%2F&ts=1364579710&use_mirror=garr' && \ gunzip
A simple `tar -xvf` can replace the separate `gunzip` and `tar` processes.