|
2 | 2 |
|
3 | 3 | # Glossary
|
4 | 4 |
|
5 |
| -```{eval-rst} |
6 |
| -.. glossary:: |
| 5 | +```{glossary} |
7 | 6 |
|
8 |
| - tmuxp |
9 |
| - A tool to manage workspaces with tmux. A pythonic abstraction of |
10 |
| - tmux. |
| 7 | +tmuxp |
| 8 | + A tool to manage workspaces with tmux. A pythonic abstraction of |
| 9 | + tmux. |
11 | 10 |
|
12 |
| - tmux(1) |
13 |
| - The tmux binary. Used internally to distinguish tmuxp is only a |
14 |
| - layer on top of tmux. |
| 11 | +tmux |
| 12 | +tmux(1) |
| 13 | + The tmux binary. Used internally to distinguish tmuxp is only a |
| 14 | + layer on top of tmux. |
15 | 15 |
|
16 |
| - kaptan |
17 |
| - configuration management library, see `kaptan on github`_. |
| 16 | +kaptan |
| 17 | + configuration management library, see [kaptan on github](https://github.com/emre/kaptan). |
18 | 18 |
|
19 |
| - Server |
20 |
| - Tmux runs in the background of your system as a process. |
| 19 | +Server |
| 20 | + Tmux runs in the background of your system as a process. |
21 | 21 |
|
22 |
| - The server holds multiple :term:`Session`. By default, tmux |
23 |
| - automatically starts the server the first time ``$ tmux`` is ran. |
| 22 | + The server holds multiple {term}`Session`. By default, tmux |
| 23 | + automatically starts the server the first time ``$ tmux`` is ran. |
24 | 24 |
|
25 |
| - A server contains :term:`session`'s. |
| 25 | + A server contains {term}`session`'s. |
26 | 26 |
|
27 |
| - tmux starts the server automatically if it's not running. |
| 27 | + tmux starts the server automatically if it's not running. |
28 | 28 |
|
29 |
| - Advanced cases: multiple can be run by specifying |
30 |
| - ``[-L socket-name]`` and ``[-S socket-path]``. |
| 29 | + Advanced cases: multiple can be run by specifying |
| 30 | + ``[-L socket-name]`` and ``[-S socket-path]``. |
31 | 31 |
|
32 |
| - Client |
33 |
| - Attaches to a tmux :term:`server`. When you use tmux through CLI, |
34 |
| - you are using tmux as a client. |
| 32 | +Client |
| 33 | + Attaches to a tmux {term}`server`. When you use tmux through CLI, |
| 34 | + you are using tmux as a client. |
35 | 35 |
|
36 |
| - Session |
37 |
| - Inside a tmux :term:`server`. |
| 36 | +Session |
| 37 | + Inside a tmux {term}`server`. |
38 | 38 |
|
39 |
| - The session has 1 or more :term:`Window`. The bottom bar in tmux |
40 |
| - show a list of windows. Normally they can be navigated with |
41 |
| - ``Ctrl-a [0-9]``, ``Ctrl-a n`` and ``Ctrl-a p``. |
| 39 | + The session has 1 or more {term}`Window`. The bottom bar in tmux |
| 40 | + show a list of windows. Normally they can be navigated with |
| 41 | + ``Ctrl-a [0-9]``, ``Ctrl-a n`` and ``Ctrl-a p``. |
42 | 42 |
|
43 |
| - Sessions can have a ``session_name``. |
| 43 | + Sessions can have a ``session_name``. |
44 | 44 |
|
45 |
| - Uniquely identified by ``session_id``. |
| 45 | + Uniquely identified by ``session_id``. |
46 | 46 |
|
47 |
| - Window |
48 |
| - Entity of a :term:`session`. |
| 47 | +Window |
| 48 | + Entity of a {term}`session`. |
49 | 49 |
|
50 |
| - Can have 1 or more :term:`pane`. |
| 50 | + Can have 1 or more {term}`pane`. |
51 | 51 |
|
52 |
| - Panes can be organized with a layouts. |
| 52 | + Panes can be organized with a layouts. |
53 | 53 |
|
54 |
| - Windows can have names. |
| 54 | + Windows can have names. |
55 | 55 |
|
56 |
| - Pane |
57 |
| - Linked to a :term:`Window`. |
| 56 | +Pane |
| 57 | + Linked to a {term}`Window`. |
58 | 58 |
|
59 |
| - a pseudoterminal. |
| 59 | + a pseudoterminal. |
60 | 60 |
|
61 |
| - Target |
62 |
| - A target, cited in the manual as ``[-t target]`` can be a session, |
63 |
| - window or pane. |
64 |
| -
|
65 |
| -.. _kaptan on github: https://github.com/emre/kaptan |
| 61 | +Target |
| 62 | + A target, cited in the manual as ``[-t target]`` can be a session, |
| 63 | + window or pane. |
66 | 64 | ```
|
0 commit comments