tmuxに最適なデフォルトのキーバインディングは何ですか?また、なぜemacsを使用し、vimを使用する場合(Linux Mint 12)ですか?Ctrl-bは問題ありませんが、bashシェルおよびemacsと少し競合します。
tmuxに最適なデフォルトのキーバインディングは何ですか?また、なぜemacsを使用し、vimを使用する場合(Linux Mint 12)ですか?Ctrl-bは問題ありませんが、bashシェルおよびemacsと少し競合します。
回答:
関連する投稿で良い答えが見つかりました:screenまたはtmuxで最も競合しないプレフィックス/エスケープシーケンスは何ですか?
そして、Ctrl- \を使用しました。以下は私の〜/ .tmux-confです:
set-window-option -g mode-keys vi
set-window-option -g window-status-current-bg blue
set-window-option -g automatic-rename on
set-option -g status-keys vi
set-option -g history-limit 100000
set-option -g base-index 1
set-option -s escape-time 0
setw -g mode-mouse on
set-option -g mouse-select-pane on
# We won't worry about sending C-\ to any programs
# bind-key C-\ send-prefix
# hit C-\ twice to go to last window
bind-key C-\ last-window
bind-key b set-option status
bind-key / command-prompt "split-window 'exec man %%'"
# vim's definition of a horizontal/vertical split is reversed from tmux's
bind s split-window -v
bind v split-window -h
# move around panes with hjkl, as one would in vim after pressing ctrl-w
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# resize panes like vim
bind < resize-pane -L 10
bind > resize-pane -R 10
bind - resize-pane -D 10
bind + resize-pane -U 10
# C-b is not acceptable, due to emacs, bash, and vim
unbind-key C-b
set-option -g prefix C-\
C-]
viバインディングと競合せずabort-recursive-edit
、Emacsのデフォルトバインディングと競合するを強くお勧めします。私はそれをめったに使用せず、厄介な状況では、2回入力することは大きなドラマではありません。
私はしばらくCtrl- /を使用していましたが、少なくともvim / bashで競合するものは見つかりませんでした。私はemacsを使用しないので、重要なものと競合するかどうかはわかりません。
また、それが送信される実際のキーであるため、C-_にバインドして動作させる必要があったと思う小さなメモです。