Tmuxキーバインディングの問題


8

しばらく画面の使用からtmuxの使用に切り替えました。tmuxのデフォルトの+ ではなく、画面のCtrl+ aシーケンスを使用するtmux設定があります。Ctrlb

ただし、見つけた問題の1つは、ctrl-aを押してから、前の画面でpを押すか、次の画面でnを押すと、ctrlキーを放さずにtmuxがキーシーケンスを無視することです。Ctrl+ を押しa、を離してCtrlから、nまたはを押すと、正常にp動作します。

何が悪いのかについての考えはありますか?私の設定は次のとおりです:

# $Id: t-williams.conf,v 1.1 2009/11/02 18:59:28 nicm Exp $
#
# ~/.tmux.conf - tmux terminal multiplexer config
# Thayer Williams (http://cinderwick.ca)
# "Feel free to do whatever you like with it."

# set prefix key to ctrl+a
unbind C-b
set -g prefix C-a

# send the prefix to client inside window (ala nested sessions)
bind-key a send-prefix

# toggle last window like screen
bind-key C-a last-window

# confirm before killing a window or the server
bind-key k confirm kill-window
bind-key K confirm kill-server

# toggle statusbar
bind-key b set-option status

# ctrl+left/right cycles thru windows
bind-key -n C-right next
bind-key -n C-left prev

# open a man page in new window
bind / command-prompt "split-window 'exec man %%'"

# switch split window keys
unbind %
bind | split-window -h
bind - split-window -v

# quick view of processes
bind '~' split-window "exec htop"

# scrollback buffer n lines
set -g history-limit 10000

# listen for activity on all windows
#set -g bell-action any
setw -g monitor-activity off
set -g visual-activity off

# on-screen time for display-panes in ms
set -g display-panes-time 2000

# start window indexing at one instead of zero
set -g base-index 1

# enable wm window titles
set -g set-titles on

# Automatically set window title
setw -g automatic-rename

# statusbar --------------------------------------------------------------

set -g display-time 2000

# default statusbar colors
set -g status-fg white
set -g status-bg cyan
set -g status-attr default

# default window title colors
set-window-option -g window-status-fg black
set-window-option -g window-status-bg cyan
set-window-option -g window-status-attr default

# active window title colors
set-window-option -g window-status-current-fg white
set-window-option -g window-status-current-bg black
set-window-option -g window-status-current-attr bright

# command/message line colors
set -g message-fg blue
set -g message-bg white
set -g message-attr dim

# center align the window list
set -g status-justify centre

# show some useful 
set -g status-left "[#[fg=black]#H#(uptime | cut -d ',' -f 3- | sed -e 's/ load average: //' | sed -e 's/  / /g')#[default]]"
set -g status-left-length 50
set -g status-right "[#[fg=black]%a %Y-%m-%d %H:%M#[default]]"
set -g status-right-length 50

set -g default-terminal "screen"

回答:


7

画面の下で元の動作を模倣する解決策を見つけました(残りの部分は単なるウィンドウドレッシングなので、構成の関連部分のみを含めます)。

# set prefix key to ctrl+a until I have time to adapt
unbind C-b
set -g prefix C-a

# send the prefix to client inside window (ala nested sessions)
bind-key a send-prefix

# toggle last window like screen
bind-key C-a last-window

# navigate through windows like screen
bind-key C-a-n next
bind-key C-a-p prev

キーシーケンスを直接チェーン化することが解決策でした。実際にそれができるとは思いませんでしたが、完全に機能し、send-prefixオプションを維持できます(これは問題の一部であると懸念していました)。


自分の答えを他の人の役に立つ解決策として報告できると思います。
gitaarik 14年

私はデフォルトのキーバインドを使用すると私は別の鉱山を少し設定しますbind-key C-nbind-key C-p。Ctrlキーを押し続けることができます。
SergioAraujo

2

Tmuxは、ctrlキーが押されている間に実行されたキー押下をC形式であると見なします。追加bind C-p prevbind C-n nextて、同じ効果を得ることもできます。


ありがとう、アレックス、私は正しい軌道に乗った。ctrl-pとctrl-nはしたくありませんでした。私はまだtmuxのない一部のマシンを管理しており、まだ時々screenを使用しているので、screenの元の動作に少し近い形で何かを探していました。しかし、あなたのコメントはそれを正しいものにするために私ができることについて私に説明しました。
モーガンブラックソーン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.