It makes me sad to see a respectable piece of open source software hosted on this site with its intrusive advertising practices such as ads with fake "install" buttons on the download page. What is the advantage of using Sourceforge these days when github and bitbucket are free for open source?
All I see after clicking download is a direct link to the file, which is in fact just a .tar.gz.
Tmux 2.0 released
11–20 of 221 posts
Re: Tmux 2.0 released
#12Re: Tmux 2.0 released
#13The main thing that I wish I could have in tmux is the ability to disable other sessions attached to the current terminal without outright detaching them. I intend to go back to that other machine at some point, I just don't want its tiny screen making my current session tiny for no reason. Maybe this is actually possible already and I just haven't found it?
Re: Tmux 2.0 released
#14Why it's 2.0? I don't see any really significant changes, or maybe I missed smth.
Re: Tmux 2.0 released
#15My absolute favorite has to be binding a hotkey to opening URLs in the current window [0]. See [1] for a small demo I just recorded.
To get started, here's my current config: [1]
[0]: https://github.com/jbnicolai/tmux/blob/master/.tmux.conf#L12...
[1]: http://recordit.co/vdxy09GpYG
[2]: https://github.com/jbnicolai/tmux/blob/master/.tmux.conf
Re: Tmux 2.0 released
#16The main thing that I wish I could have in tmux is the ability to disable other sessions attached to the current terminal without outright detaching them. I intend to go back to that other machine at some point, I just don't want its tiny screen making my current session tiny for no reason. Maybe this is actually possible already and I just haven't found it?
Say you want to attach to session 0 (use `tmux list-sessions` to see available sessions). A trick I've found is not attaching to that session, but starting a new session sharing all underlying windows. The model in tmux is [session]->[windows]->[panes], but something I did not realize until recently is that [session] can be multiple. So rather than `tmux attach -t 0` use `tmux new-session -t 0`, allowing you to inter…
Re: Tmux 2.0 released
#17Re: Tmux 2.0 released
#18Earlier quoted context omitted.
Say you want to attach to session 0 (use `tmux list-sessions` to see available sessions). A trick I've found is not attaching to that session, but starting a new session sharing all underlying windows. The model in tmux is [session]->[windows]->[panes], but something I did not realize until recently is that [session] can be multiple. So rather than `tmux attach -t 0` use `tmux new-session -t 0`, allowing you to inter…
Is this a feature in 2.0? It doesn't seem to work for me - I still see a large part of my terminal window filled with the dots, since the other session's terminal window is much smaller.
Re: Tmux 2.0 released
#19For those who are just getting started with tmux: I advise looking around others' .tmux.conf files for some sensible settings. Like Vim, Tmux ships with a lot of powerful features disabled by default. My absolute favorite has to be binding a hotkey to opening URLs in the current window [0]. See [1] for a small demo I just recorded. To get started, here's my current config: [1] [0]: https://github.com/jbnicolai/tmux/b…