LoginSignup
5
4

More than 5 years have passed since last update.

達人の .tmux.conf から tmux コマンドオプションなんかを学ぶ

Last updated at Posted at 2016-02-23

tmux 設定関連のエントリは数あれど、コマンドやオプションの説明はあまり見なかったので、メモがてらの投稿 ※随時追記

設定の引用元

bind-key -r -T prefix Up select-pane -U

  • -r は repeat-time オプションで、次のキー入力までの待ち受け時間の設定。デフォルトは500で、単位はミリ秒。

  • -Tkey-table を指定する。省略した場合は -T prefix とみなす。

見出しのコマンドは bind-key -r Up select-page -U としても同義

bind h select-pane -L

  • bindbind-key のエイリアス

bind-key h select-pane -L と同義

setw -g mode-keys vi

  • setwset-window-option のエイリアス

  • -g は globalセッション(またはウィンドウ)にオプションを設定する。

  • mode-keysvi or emacs を指定可能で、デフォルトは emacs

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4