Difference between pages "Package:Tmux" and "Translations:Funtoo:Metro/134/en"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
 
(Importing a new version from external source)
 
Line 1: Line 1:
{{Ebuild
[[Category:HOWTO]]
|Summary=Terminal multiplexer
[[Category:Metro]]
|CatPkg=app-misc/tmux
__TOC__
|Maintainer=
|Homepage=http://tmux.sourceforge.net/
}}
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.
 
== Installation ==
 
<console>
###i## emerge -a tmux
</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.
 
== Keyboard Shortcuts ==
 
{|class="table table-striped"
!! Shortcut !! Description
|-
|| <code>C-b ?</code> || List all keybindings
|-
|| <code>C-b :</code> || Enter tmux command prompt
|-
|| <code>C-b d</code> || Detach session
|-
|| <code>C-b c</code> || Create window
|-
|| <code>C-b n</code> || Switch to next window
|-
|| <code>C-b p</code> || Switch to previous window
|-
|| <code>C-b l</code> || Switch to last window
|-
|| <code>C-b "</code> || Split current pane into top and bottom
|-
|| <code>C-b %</code> || Split current pane into left and right
|-
|| <code>C-b o</code> || Move to next pane
|-
|| <code>C-b ;</code> || Move to previous pane
|-
|| <code>C-b [</code> || Enter copy/scroll mode (type <code>q</code> to leave this mode)
|}
 
== Configuration ==
=== ~/.tmux.conf ===
Example tmux configuration shown below
<code>~/.tmux.conf</code> gets loaded on tmux startup.
{{file|name=~/.tmux.conf|lang=|desc=tmux configuration|body=
set -g base-index 1
set -g default-terminal "st-256color"
set -g history-limit 4096
set -g status-left ''
set -g status-right "#[bg=brightblack]#[fg=green] #T "
set -g status-style "bg=black"
 
setw -g pane-base-index 1
setw -g window-status-format "#[bg=magenta]#[fg=black] #I #[bg=brightblack]#[fg=green] #W "
setw -g window-status-current-format "#[bg=brightmagenta]#[fg=black] #I #[bg=green]#[fg=black] #W "
 
bind r source-file ~/.tmux.conf
}}
 
{{EbuildFooter}}

Revision as of 17:33, July 12, 2015