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
|
|
|
|
2013-01-24 13:54:55 +00:00
|
|
|
To enable this feature when launching Zsh in a local terminal, add the
|
|
|
|
following line to *zpreztorc*:
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2013-01-24 13:54:55 +00:00
|
|
|
zstyle ':prezto:module:tmux:auto-start' local 'yes'
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2013-01-24 13:54:55 +00:00
|
|
|
To enable this feature when launching Zsh in a SSH connection, add the
|
|
|
|
following line to *zpreztorc*:
|
|
|
|
|
|
|
|
zstyle ':prezto:module:tmux:auto-start' remote 'yes'
|
|
|
|
|
2014-02-21 19:13:21 +00:00
|
|
|
In both cases, it will create a background session named _prezto_ if the tmux
|
|
|
|
server is not started.
|
2012-03-29 20:31:55 +00:00
|
|
|
|
2014-02-21 19:13:21 +00:00
|
|
|
With `auto-start` enabled, you may want to control how multiple sessions are
|
|
|
|
managed. The `destroy-unattached` option of tmux controls if the unattached
|
|
|
|
sessions must be kept alive, making sessions available for later use, configured
|
|
|
|
in *tmux.conf*:
|
|
|
|
|
|
|
|
set-option -g destroy-unattached [on | off]
|
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*:
|
|
|
|
|
2014-02-21 19:13:21 +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)
|
2013-01-24 13:54:55 +00:00
|
|
|
- [Georges Discry](https://github.com/gdiscry)
|
2014-02-21 19:13:21 +00:00
|
|
|
- [Xavier Cambar](https://github.com/xcambar)
|
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
|