有没有办法在 tmux 复制模式下突出显示搜索到的词?
下面是我的 tmux 配置:
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
bind a send-prefix
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
# set window start from 1
set -g base-index 1
# scrollback buffer n lines
set -g history-limit 5000
# C-a C-a for the last active window
bind-key C-a last-window
# Highlight active window
set-window-option -g window-status-current-bg red
# Default colors …
Run Code Online (Sandbox Code Playgroud)