Difference between revisions of "Package:Tmux"

From Funtoo
Jump to navigation Jump to search
(Created page with "{{Ebuild |Summary=Terminal multiplexer |CatPkg=app-misc/tmux |Maintainer= |Homepage=http://tmux.sourceforge.net/ }} Tmus is a terminal multiplexer (just as Package:Screen (T...")
 
(Added "Getting Started" section)
Line 5: Line 5:
|Homepage=http://tmux.sourceforge.net/
|Homepage=http://tmux.sourceforge.net/
}}
}}
Tmus is a terminal multiplexer (just as [[Package:Screen (Terminal Multiplexer)|screen]], which is generally installed by default on servers). It enables you to run multiple terminal in one. You can arrange them in multiple tabs that you can split into multiple panes as well.
Tmux is a terminal multiplexer (just as [[Package:Screen (Terminal Multiplexer)|screen]], which is generally installed by default on servers). It enables you to run multiple terminals in one. You can arrange them in multiple tabs that you can split into multiple panes as well.


== USE flags ==
== USE flags ==
Line 25: Line 25:
###i## emerge -a tmux
###i## emerge -a tmux
</console>
</console>
== Getting Started ==
To launch Tmux, run <code>tmux</code> in a terminal. This should clear your current terminal and display a <i>status bar</i> on the bottom. In this status bar, you should see something like <i>"[0] 0:bash*"</i>. This means you are on session 0 (<b>[0]</b>), window 0 (<b>0:</b>) and you run "bash".
Tmux uses <b><code>Ctrl+b</code></b> as default prefix. This means that before issuing any command you will have to hit <b><code>Ctrl+b</code></b> to tell tmux you are asking <i>it</i>. For instance, type <b><code>Ctrl+b</code></b> and then <b><code>%</code></b>. This should split vertically the window to add a new pane. Now issue <b><code>Ctrl+b "</code></b>, this will split the new pane horizontally to create a new pane. You can switch against panes with <b><code>Ctrl+b Left/Up/Right/Down</code></b> (Left/Up/Right/Down being the arrow keys).
Another cool stuff is windows. Splitting your window into panes is good, but for readability purpose, you can't indefinitely split your window. So you can open a new window (which would behave more like a tab) by issuing <b><code>Ctrl+b c</code></b>. Your current window will be replaced by a brand new one. However you will notice that your status bar now looks like this <i>"[0] 0:bash- 1:bash*"</i>. The minus symbol (<b>-</b>) means this is the last visited window. The asterisk symbol (<b>*</b>) means this is the current window. You can add panes to this window as well. To go back to the first window, issue <b><code>Ctrl+b 0</code></b>. Generally speaking, issue <b><code>Ctrl+b <window-id></code></b> to go to the window <i><window-id></i>.
You can do much more with tmux, but this is the minimum to know if you want to quickly get started.
{{EbuildFooter}}
{{EbuildFooter}}

Revision as of 20:08, August 31, 2014

Tmux

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Tmux is a terminal multiplexer (just as screen, which is generally installed by default on servers). It enables you to run multiple terminals in one. You can arrange them in multiple tabs that you can split into multiple panes as well.

USE flags

Name Description
debug Adds extra debug codepaths (~description needs to be detailed for this specific ebuild)
selinux Enables Security Enhanced Linux support. You must not set this use flag manually or breakage will occur! (See SELinux)
vim-syntax Provides syntax plugin for Vim in tmux configuration files

Installation

root # emerge -a tmux

Getting Started

To launch Tmux, run tmux in a terminal. This should clear your current terminal and display a status bar on the bottom. In this status bar, you should see something like "[0] 0:bash*". This means you are on session 0 ([0]), window 0 (0:) and you run "bash".

Tmux uses Ctrl+b as default prefix. This means that before issuing any command you will have to hit Ctrl+b to tell tmux you are asking it. For instance, type Ctrl+b and then %. This should split vertically the window to add a new pane. Now issue Ctrl+b ", this will split the new pane horizontally to create a new pane. You can switch against panes with Ctrl+b Left/Up/Right/Down (Left/Up/Right/Down being the arrow keys).

Another cool stuff is windows. Splitting your window into panes is good, but for readability purpose, you can't indefinitely split your window. So you can open a new window (which would behave more like a tab) by issuing Ctrl+b c. Your current window will be replaced by a brand new one. However you will notice that your status bar now looks like this "[0] 0:bash- 1:bash*". The minus symbol (-) means this is the last visited window. The asterisk symbol (*) means this is the current window. You can add panes to this window as well. To go back to the first window, issue Ctrl+b 0. Generally speaking, issue Ctrl+b <window-id> to go to the window <window-id>.

You can do much more with tmux, but this is the minimum to know if you want to quickly get started.