.tmux.conf 言語

.tmux.conf 言語

私は私をカスタマイズするプロセスに.tmux.confあり、他の人のカスタマイズに関する他の多くの例を見つけました。

以下は、tmuxウィンドウの分割をvimにさらに類似させる例です。

set-option -g prefix C-w
unbind-key C-w
bind-key C-w send-prefix
set -g base-index 1

bind-key v split-window -h
bind-key s split-window -v
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R

bind keysetandの文法的意味は何ですかset-option

ベストアンサー1

tmux設定ファイルは、起動時に実行される一連のtmuxコマンドで構成されています。すべてのコマンドとオプションがありますtmux(1)マニュアルページ

おすすめ記事