Live data from Hacker News

tmux 1.8 Released

tmux.sourceforge.net

81–90 of 162 posts

Re: tmux 1.8 Released

#82
post #5

What 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...

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

instead of make install, consider checkinstall or fpm so that you are properly integrated into ubuntu's native package manager (dpkg). Doing so will save you headaches when you want to uninstall tmux or upgrade later.

Re: tmux 1.8 Released

#85
post #15
post #6

Should i finally switch from screens to tmux?

I switched from screen to tmux to screen back again. tmux seemed slower while switching windows, plus I like the simplicity of screen.

Using tmux 1.8 and switching between windows is super fast.

Re: tmux 1.8 Released

#87
Does anyone know where to find a good introduction to tmux?

I attempted to start using it a couple of weekends ago but wasn't able to find any good documentation with my google-fu.

Re: tmux 1.8 Released

#88
post #71
post #42

I realise you can rebind them, but both screen and tmux do themselves a disservice by choosing binding keys which overlap with prominent keys in emacs and for users who use emacs mode in their shell. First impressions count. If you want to configure tmux to use just a backtick as the escape, create ~/.tmux.conf unbind C-b set -g prefix ` bind-key ` send-prefix When you need to type a backtick just press it twice. For…

I use ` as the prefix, so you might take a look at my tmux.conf[1] if you want help transitioning. [1] http://pastebin.com/g6frvnnr

Ditto; mine's at https://github.com/pavellishin/dotfiles/blob/master/.tmux.co...

a

Re: tmux 1.8 Released

#89
post #54
post #50

Earlier quoted context omitted.

That's not quite what I'm after. I guess it's hard for non-screen people to know what I'm talking about from my vague description above :) Here's a scenario to show what I mean: you're in buffer 5. You switch to buffer 2. Now if you do ctrl+a, ctrl+a, you leap back to buffer 5. And if you do it again, you go back to buffer 2. This is great when you're editing code in one session and running it in the other.

I use that screen behaviour for panes: bind C-a last-pane but last-window exists too.

Is there a way to set it up to do this if you hit (escape-key) (current buffer index)? That's the way weechat works, and I keep expecting it to work in tmux as well :/

Re: tmux 1.8 Released

#90
post #76

Earlier quoted context omitted.

Yes, you definitely should, just make sure to plop this into your .tmux.conf unbind C-b set -g prefix C-a

No, don't. C-b is a much better shortcut than C-a.

I recommend the backtick: `

The only two pains that come with it are a) having to type `` to get a single `, and b) pasting anything containing a backtick behaves as if you'd typed it out.

Post reply on HN