prezto/modules/tmux/README.md

57 lines
1.5 KiB
Markdown
Raw Normal View History

2012-05-22 02:18:30 +02:00
Tmux
2012-04-04 15:22:02 +02:00
====
2012-03-29 22:31:55 +02:00
2012-04-04 15:22:02 +02:00
Defines [tmux][1] aliases and provides for auto launching it at start-up.
2012-03-29 22:31:55 +02:00
Aliases
-------
2012-06-02 23:17:12 +02:00
- `ta` attaches or switches to a tmux session.
- `tl` lists sessions managed by the tmux server.
2012-03-29 22:31:55 +02:00
Settings
--------
### Auto-start
2012-06-02 23:17:12 +02:00
Starts a tmux session automatically when Zsh is launched.
2012-03-29 22:31:55 +02:00
2012-04-04 15:22:02 +02:00
To enable this feature, add the following line to *zshrc*:
2012-03-29 22:31:55 +02:00
2012-03-28 18:41:39 +02:00
zstyle ':omz:module:tmux' auto-start 'yes'
2012-03-29 22:31:55 +02:00
2012-04-04 15:22:02 +02:00
It will create a background session named _#OMZ_ and attach every new shell to
it.
2012-03-29 22:31:55 +02:00
2012-03-28 18:41:39 +02:00
To avoid keeping open sessions, this module sets `destroy-unattached off` on
2012-04-04 15:22:02 +02:00
the background session and `destroy-unattached on` on every other session
(global setting).
2012-03-29 22:31:55 +02:00
Caveats
-------
On Mac OS X, launching tmux can cause the error **launch_msg(...): Socket is not
connected** to be displayed, which can be fixed by installing
[reattach-to-user-namespace][3], available in [Homebrew][4], and adding the
following to *tmux.conf*:
2012-05-22 02:18:30 +02:00
set-option -g default-command "reattach-to-user-namespace -l $SHELL -l"
Furthermore, tmux is known to cause **kernel panics** on Mac OS X. A discussion
about this and OMZ has already been opened [here][2].
2012-03-29 22:31:55 +02:00
Authors
-------
2012-05-22 02:18:30 +02:00
*The authors of this module should be contacted via the [issue tracker][5].*
2012-03-29 22:31:55 +02:00
2012-05-22 02:18:30 +02:00
- [Sorin Ionescu](https://github.com/sorin-ionescu)
- [Colin Hebert](https://github.com/ColinHebert)
2012-04-04 15:22:02 +02:00
[1]: http://tmux.sourceforge.net
[2]: http://git.io/jkPqHg
[3]: ChrisJohnsen/tmux-MacOSX-pasteboard
[4]: mxcl/homebrew
2012-05-22 02:18:30 +02:00
[5]: https://github.com/sorin-ionescu/oh-my-zsh/issues
2012-04-04 15:22:02 +02:00