1. ホーム
  2. window

[解決済み】tmuxでウィンドウを終了させる方法は?

2022-04-03 09:24:08

質問

tmuxでウィンドウを終了させる方法を教えてください。例えば Ctrl a k でのショートカット スクリーン Ctrl a が接頭辞になります。

解決方法は?

Kentの回答があなたの質問に完全に答えていますが、もしあなたがtmuxの設定をGNU Screenに似たものに変えたいと思っているなら、私がこれを達成するために使用したtmux.confを以下に紹介します。

# Prefix key
set -g prefix C-a
unbind C-b
bind C-a send-prefix

# Keys
bind k confirm kill-window
bind K confirm kill-server
bind % split-window -h
bind : split-window -v
bind < resize-pane -L 1
bind > resize-pane -R 1
bind - resize-pane -D 1
bind + resize-pane -U 1
bind . command-prompt
bind a last-window
bind space command-prompt -p index "select-window"
bind r source-file ~/.tmux.conf

# Options
set -g bell-action none
set -g set-titles on
set -g set-titles-string "tmux (#I:#W)"
set -g base-index 1
set -g status-left ""
set -g status-left-attr bold
set -g status-right "tmux"
set -g pane-active-border-bg black
set -g pane-active-border-fg black
set -g default-terminal "screen-256color"

# Window options
setw -g monitor-activity off
setw -g automatic-rename off

# Colors
setw -g window-status-current-fg colour191
set -g status-bg default
set -g status-fg white
set -g message-bg default
set -g message-fg colour191