tmux を使い始めたばかりです。今のところとても気に入っています - スクリーンのしっかりした代替品です。私が抱えている 1 つの問題は、tmux がその中で実行されている Midnight Commander から Alt (メタ) キーの押下を盗むことです。
プレフィックス キーを C-[ にしました。これはうまく機能します。ただし、Midnight Commander を使用している場合、tmux は Alt + anykey を C-[ + anykey と同じように解釈します。MC では Alt+ キーストロークが多いため、これはかなり面倒です。
したがって、tmux で実行されているすべてのアプリケーション (Midnight Commander、emacs など) の Alt + キーストロークを無視する必要があります。
私の .tmux.conf ファイルを以下に示します。どんな助けでも大歓迎です。
ありがとう、マドレーヌ。
# Turn on the status bar and change the coloring to my preference.
# It is handy to highlight in red the active window.
set -g status on
set -g status-bg black
set -g status-fg white
set -g status-left ‘#[fg=green]#H’
set-window-option -g window-status-current-bg red
# Use emacs keys
set -g status-keys emacs
# Makes the prefix key immediately available. There
# is no pause necessary for an escape sequence
set -s escape-time 0
# Make our prefix key: [
unbind C-b
set -g prefix C-[
# Split windows using emacs keys
unbind %
bind 2 split-window -v
bind 3 split-window -h
# Allow a mouse click to switch panes
set-option -g mouse-select-pane on
# Set up a key to switch to the last active window
bind-key C-l last-window