#+ORG2BLOG
基本操作
prefix キーを C-t とする。
通常時
キーバインド | 動作 |
---|---|
C-t C-[ | コピーモードに以降する |
C-t C-] | クリップボードの文字列を貼り付ける |
コピーモード
キーバインド | 動作 |
---|---|
C-t 2 | マーク |
y | 選択範囲をクリップボードにコピー |
設定
設定ファイル .tmux.conf
の再読込は tmux source-file ~/.tmux.conf
で実行する。
Tmux Pluging Manager: tqm
まずはこれをインストール.
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
下記のように .tmux.conf に記載。
#=================================== # tpm - Tmux Plugin Manager #=================================== # Plugins set -g @plugin 'tmux-plugins/tpm' # Initialize TMUX plugin manager # (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm'
Plugins
prefix-I でインストール.
Tmux-yank
x1, wayland で自動的にcopyコマンドを切り替えてくれる。wl-clipboard, xsel, xclip をインストールすること。
- prefix+[ で選択モードになる
- Ctrl-2 で領域選択開始
- y で領域をコピー
下記のように .tmux.conf に設定。
set -g @plugin 'tmux-plugins/tmux-yank'