惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
博客园 - 聂微东
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
D
Docker
B
Blog
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
月光博客
月光博客
F
Fortinet All Blogs
爱范儿
爱范儿
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
The Cloudflare Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
U
Unit 42

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Tmux Questions and Trouble Shootings
2018-10-23 · via jdhao's digital space

In this post, I will summarize a list of questions related to Tmux during the process of learning how to use it.

How to set the right status bar to show load average?#

Show system load average and time at right of status bar

set -g status-right "#[fg=red,bold]#(uptime | cut -d ',' -f 4-) #[fg=blue,bold][%Y-%m-%d %H:%M]#[default]"

# increase the length of status bar, or the characters won't fit
set -g status-right-length 100

You may need to change the part cut -d ',' -f 4- to cut -d ',' -f 3-. Because, on my system, the output of uptime is something like this:

16:36:09 up 9 days, 5:30, 40 users, load average: 31.12, 24.51, 21.68

With the above setting, the current load average and time will be shown on the right side of tmux status bar.

How does tmux color work?#

You may use the following setting to set the color of some Tmux window component:

# set the status bar background color to colour10
set -g status-bg colour10

The colors are from the 256 colors supported by the terminal. we can use script below to show what these colors look like:

for i in {0..255}; do
    printf "\x1b[38;5;${i}mcolour${i}\x1b[0m\n"
done

Then, inside Tmux config file ~/.tmux.conf, we can use a color with index <INDEX> as colour<INDEX>.

See here for more discussions.

Home and End key does not work inside Tmux?#

Inside Tmux, the home and end key does not work. The reason is probably that the terminal type inside Tmux conflict with terminal type set outside. Try to use the following setting in .tmux.conf:

set -g default-terminal "screen-256color"

Also make sure that you do not manually set TERM variable in .bash_profile or other shell configuration files. You should set TERM in your terminal emulator configurations. This will most probably fix the issue.

See also reference here.

What is terminfo and how to check the content of a term files?#

For almost every terminal, there is terminfo file describing the ability of this terminal. Usually, programs have to know the terminal type to send the correct command to terminal. So the terminal or (terminal emulators) are responsible for telling what they are capable of (i.e., what kind of terminal they are). Then the various program depending on this information will read this message and work accordingly. That is why we need to set default term for Tmux for it to work nicely with Neovim/Vim.

To see the content of a term file, you can use infocmp followed by the term name. For example:

The command above will print the info of term file xterm-256color. If you use infocmp without any argument, it will print the info of term file currently in use.

Redraw window when switching from a smaller window to a bigger one?#

When you attach to a session in two different terminal applications. You may notice that some of the window space is filled with dots. That is because the session window before is smaller than the current window. How to redraw the current window so that it can fill the whole space?

You can use tmux detach -a inside the current session window. This command will detach all session window except the current one.

There is another solution. When you attach to a session, you can use -d option, which will detach all previous sessions opened elsewhere. The syntax is:

tmux a -d -t <SESSION_NUM>

How to copy text inside Tmux when set -g mouse on?#

Press <Shift> and drag mouse to select text, the selected text will be copied automatically.

To copy a block of text when there are multiple vertical splits, press <Alt>+<Shift> and drag mouse to select a rectangle text region.

Or you can temporarily zoom the current pane to make it occupy the whole window and copy text. After you have copied the text, press <Prefix> z again to go back to normal state.

What does -n in bind -n mean?#

By default, when you bind key to a Tmux command, you need to first press the prefix key (the default prefix key is Ctrl-b). For example,

In the above settings, s is binded to horizontally split a window. To invoke it, you have to press <prefix> s. The -n options means that no prefix is needed, thus we can directly press the keys to invoke a command. The Tmux man page says:

bind-key [-nr] [-T key-table] key command [arguments]
                   (alias: bind)
             Bind key key to command.  Keys are bound in a key table.  By default (without -T), the key is bound in the prefix key table.  This table is used for keys pressed after the prefix key (for example, by default ‘c’
             is bound to new-window in the prefix table, so ‘C-b c’ creates a new window).  The root table is used for keys pressed without the prefix key: binding ‘c’ to new-window in the root table (not recommended) means
             a plain ‘c’ will create a new window.  -n is an alias for -T root.  Keys may also be bound in custom key tables and the switch-client -T command used to switch to them from a key binding.  The -r flag indicates
             this key may repeat, see the repeat-time option.

There is a delay to exit Vim when pressing Esc key inside Tmux?#

Tmux has a escape-time option to control how Esc is interpreted:

escape-time time.
    Set the time in milliseconds for which tmux waits after an escape is input to determine if it is part of a function or meta key sequences.  The
    default is 500 milliseconds.

You should set escape-time to a lower value to prevent it from being interpreted as a Meta key. For example:

See more discussions here and here.

Difference between set and set-option?#

set is an alias for set-option, see here.

Difference between bind and bind-key?#

bind is an alias for bind-key, see here.

rz and sz does not work inside Tmux?#

rz and sz are not so popular and supporting it will add more code. So the Tmux author decide to not support them. See here.

Tmux hangs or freezes when there are a lot of output from one pane#

When you open a Tmux session and start multiple vertical splits, if there are a lot of output from one pane, for example, when you use tar to compress a large amount of files, you may find that tmux is very slow to respond your input in another pane split.

It seems that there is no good solution for this issue. You may need to change your terminal emulator.

More discussions can be found here, here and here.

References#