You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1011 B
47 lines
1011 B
13 years ago
|
tmux
|
||
|
====
|
||
13 years ago
|
|
||
13 years ago
|
Defines [tmux][1] aliases and provides for auto launching it at start-up.
|
||
13 years ago
|
|
||
|
Aliases
|
||
|
-------
|
||
|
|
||
13 years ago
|
- `ta` attach or switch to a tmux session.
|
||
|
- `tl` list sessions managed by the tmux server.
|
||
13 years ago
|
|
||
|
Settings
|
||
|
--------
|
||
|
|
||
|
### Auto-start
|
||
|
|
||
13 years ago
|
Start a tmux session automatically when Zsh is launched.
|
||
13 years ago
|
|
||
13 years ago
|
To enable this feature, add the following line to *zshrc*:
|
||
13 years ago
|
|
||
13 years ago
|
zstyle ':omz:module:tmux' auto-start 'yes'
|
||
13 years ago
|
|
||
13 years ago
|
It will create a background session named _#OMZ_ and attach every new shell to
|
||
|
it.
|
||
13 years ago
|
|
||
13 years ago
|
To avoid keeping open sessions, this module sets `destroy-unattached off` on
|
||
13 years ago
|
the background session and `destroy-unattached on` on every other session
|
||
|
(global setting).
|
||
13 years ago
|
|
||
|
Caveats
|
||
|
-------
|
||
|
|
||
13 years ago
|
tmux is known to cause kernel panics on Mac OS X. A discussion about this and
|
||
|
OMZ has already been opened [here][2].
|
||
13 years ago
|
|
||
|
Authors
|
||
|
-------
|
||
|
|
||
13 years ago
|
*The authors of this module should be contacted via the github bug tracker.*
|
||
13 years ago
|
|
||
|
- [Sorin Ionescu](/sorin-ionescu)
|
||
|
- [Colin Hebert](/ColinHebert)
|
||
13 years ago
|
|
||
|
[1]: http://tmux.sourceforge.net
|
||
|
[2]: http://git.io/jkPqHg
|
||
|
|