2012-05-22 00:18:30 +00:00
|
|
|
Tmux
|
2012-04-04 13:22:02 +00:00
|
|
|
====
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-04-04 13:22:02 +00:00
|
|
|
Defines [tmux][1] aliases and provides for auto launching it at start-up.
|
2012-03-29 20:31:55 +00:00
|
|
|
|
|
|
|
Settings
|
|
|
|
--------
|
|
|
|
|
2012-06-14 22:01:01 +00:00
|
|
|
### Auto-Start
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-06-02 21:17:12 +00:00
|
|
|
Starts a tmux session automatically when Zsh is launched.
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-09-03 20:38:18 +00:00
|
|
|
To enable this feature, add the following line to *zpreztorc*:
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle ':prezto:module:tmux' auto-start 'yes'
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
It will create a background session named _#Prezto_ and attach every new shell
|
|
|
|
to it.
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-03-28 16:41:39 +00:00
|
|
|
To avoid keeping open sessions, this module sets `destroy-unattached off` on
|
2012-04-04 13:22:02 +00:00
|
|
|
the background session and `destroy-unattached on` on every other session
|
|
|
|
(global setting).
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-06-10 23:49:33 +00:00
|
|
|
Aliases
|
|
|
|
-------
|
|
|
|
|
2012-08-15 11:55:01 +00:00
|
|
|
- `tmuxa` attaches or switches to a tmux session.
|
|
|
|
- `tmuxl` lists sessions managed by the tmux server.
|
2012-06-10 23:49:33 +00:00
|
|
|
|
2012-03-29 20:31:55 +00:00
|
|
|
Caveats
|
|
|
|
-------
|
|
|
|
|
2012-04-13 12:28:15 +00:00
|
|
|
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 00:18:30 +00:00
|
|
|
set-option -g default-command "reattach-to-user-namespace -l $SHELL -l"
|
2012-04-13 12:28:15 +00:00
|
|
|
|
|
|
|
Furthermore, tmux is known to cause **kernel panics** on Mac OS X. A discussion
|
2012-09-03 20:08:39 +00:00
|
|
|
about this and Prezto has already been [opened][2].
|
2012-03-29 20:31:55 +00:00
|
|
|
|
|
|
|
Authors
|
|
|
|
-------
|
|
|
|
|
2012-05-22 00:18:30 +00:00
|
|
|
*The authors of this module should be contacted via the [issue tracker][5].*
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2012-05-22 00:18:30 +00:00
|
|
|
- [Sorin Ionescu](https://github.com/sorin-ionescu)
|
|
|
|
- [Colin Hebert](https://github.com/ColinHebert)
|
2012-04-04 13:22:02 +00:00
|
|
|
|
|
|
|
[1]: http://tmux.sourceforge.net
|
2012-09-12 08:00:10 +00:00
|
|
|
[2]: https://github.com/sorin-ionescu/prezto/issues/62
|
|
|
|
[3]: https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard
|
|
|
|
[4]: https://github.com/mxcl/homebrew
|
2012-09-03 20:08:39 +00:00
|
|
|
[5]: https://github.com/sorin-ionescu/prezto/issues
|
2012-04-04 13:22:02 +00:00
|
|
|
|