Configuração padrão do tmux

4

Estou tentando alguns arquivos .tmux.conf , mas agora gostaria de voltar à configuração original / padrão. Como eu posso fazer isso? Eu estive procurando pelo arquivo padrão, mas sem sorte.

    
por Jay 22.12.2014 / 15:51

4 respostas

5

Aqui está a lista de opções padrão tiradas da revisão 1.51 de window-options.c na origem do tmux do OpenBSD-current (esta é a versão de desenvolvimento, sincronizada com bastante frequência no sourceforge).

# Server options.
buffer-limit  20
escape-time  500
exit-unattached  0
focus-events  0
message-limit  100
quiet  0
set-clipboard  1
terminal-overrides  "*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cs=\E]12;%p1%s\007:Cr=\E]112\007:Ss=\E[%p1%d q:Se=\E[2 q,screen*:XT"

# Session options.
assume-paste-time  1,
base-index  0
bell-action  any
bell-on-alert  0
default-command  ""
default-shell  _PATH_BSHELL
default-terminal  "screen"
destroy-unattached  0
detach-on-destroy  1
display-panes-active-colour  1
display-panes-colour  4
display-panes-time  1000
display-time  750
history-limit  2000
lock-after-time  0
lock-command  "lock -np"
lock-server  1
message-attr  0,
message-bg  3,
message-command-attr  0,
message-command-bg  0,
message-command-fg  3,
message-command-style  "bg=black,fg=yellow"
message-fg  0,
message-style  "bg=yellow,fg=black"
mouse-resize-pane  0
mouse-select-pane  0
mouse-select-window  0
mouse-utf8  0
pane-active-border-bg  8,
pane-active-border-fg  2,
pane-active-border-style  "fg=green"
pane-border-bg  8,
pane-border-fg  8,
pane-border-style  "default"
prefix C-b
prefix2  KEYC_NONE,
renumber-windows  0
repeat-time  500
set-remain-on-exit  0
set-titles  0
set-titles-string  "#S:#I:#W - \"#T\""
status  1
status-attr  0,
status-bg  2,
status-fg  0,
status-interval  15
status-justify  0
status-keys emacs
status-left  "[#S] "
status-left-attr  0,
status-left-bg  8,
status-left-fg  8,
status-left-length  10
status-left-style  "default"
status-position  1
status-right  " \"#{=22:pane_title}\" %H:%M %d-%b-%y"
status-right-attr  0,
status-right-bg  8,
status-right-fg  8,
status-right-length  40
status-right-style  "default"
status-style  "bg=green,fg=black"
status-utf8  0 # overridden in main()
update-environment  "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
visual-activity  0
visual-bell  0
visual-silence  0
word-separators  " -_@"

# Window options.
aggressive-resize  0
allow-rename  1
alternate-screen  1
automatic-rename  1
automatic-rename-format  "#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}"
c0-change-trigger  250,
c0-change-interval  100,
clock-mode-colour  4
clock-mode-style  1
force-height  0
force-width  0
main-pane-height  24
main-pane-width  80
mode-attr  0,
mode-bg  3,
mode-fg  0,
mode-keys  emacs
mode-mouse  0
mode-style  "bg=yellow,fg=black"
monitor-activity  0
monitor-silence  0
other-pane-height  0
other-pane-width  0
pane-base-index  0
remain-on-exit  0
synchronize-panes  0
utf8  0 # overridden in main()

wrap-search  1
xterm-keys  0

# XXX: not sure how to transcribe these
window-status-activity-attr  GRID_ATTR_REVERSE,
window-status-activity-bg  8,
window-status-activity-fg  8,
window-status-activity-style  "reverse"
window-status-attr  0,
window-status-bell-attr  GRID_ATTR_REVERSE,
window-status-bell-bg  8,
window-status-bell-fg  8,
window-status-bell-style  "reverse"
window-status-bg  8,
window-status-current-attr  0,
window-status-current-bg  8,
window-status-current-fg  8,
window-status-current-format  "#I:#W#F"
window-status-current-style  "default"
window-status-fg  8,
window-status-format  "#I:#W#F"
window-status-last-attr  0,
window-status-last-bg  8,
window-status-last-fg  8,
window-status-last-style  "default"
window-status-separator  " "
window-status-style  "default"

As combinações de teclas padrão de key-bindings.c

 bind C-b send-prefix
 bind C-o rotate-window
 bind C-z suspend-client
 bind Space next-layout
 bind ! break-pane
 bind '\"' split-window
 bind '#' list-buffers
 bind '$' command-prompt -I'#S' \"rename-session '%%'\"
 bind % split-window -h
 bind & confirm-before -p\"kill-window #W? (y/n)\" kill-window
 bind \"'\" command-prompt -pindex \"select-window -t ':%%'\"
 bind ( switch-client -p
 bind ) switch-client -n
 bind , command-prompt -I'#W' \"rename-window '%%'\"
 bind - delete-buffer
 bind . command-prompt \"move-window -t '%%'\"
 bind 0 select-window -t:0
 bind 1 select-window -t:1
 bind 2 select-window -t:2
 bind 3 select-window -t:3
 bind 4 select-window -t:4
 bind 5 select-window -t:5
 bind 6 select-window -t:6
 bind 7 select-window -t:7
 bind 8 select-window -t:8
 bind 9 select-window -t:9
 bind : command-prompt
 bind \; last-pane
 bind = choose-buffer
 bind ? list-keys
 bind D choose-client
 bind L switch-client -l
 bind [ copy-mode
 bind ] paste-buffer
 bind c new-window
 bind d detach-client
 bind f command-prompt \"find-window '%%'\"
 bind i display-message
 bind l last-window
 bind n next-window
 bind o select-pane -t:.+
 bind p previous-window
 bind q display-panes
 bind r refresh-client
 bind s choose-tree
 bind t clock-mode
 bind w choose-window
 bind x confirm-before -p\"kill-pane #P? (y/n)\" kill-pane
 bind z resize-pane -Z
 bind { swap-pane -U
 bind } swap-pane -D
 bind '~' show-messages
 bind PPage copy-mode -u
 bind -r Up select-pane -U
 bind -r Down select-pane -D
 bind -r Left select-pane -L
 bind -r Right select-pane -R
 bind M-1 select-layout even-horizontal
 bind M-2 select-layout even-vertical
 bind M-3 select-layout main-horizontal
 bind M-4 select-layout main-vertical
 bind M-5 select-layout tiled
 bind M-n next-window -a
 bind M-o rotate-window -D
 bind M-p previous-window -a
 bind -r M-Up resize-pane -U 5
 bind -r M-Down resize-pane -D 5
 bind -r M-Left resize-pane -L 5
 bind -r M-Right resize-pane -R 5
 bind -r C-Up resize-pane -U
 bind -r C-Down resize-pane -D
 bind -r C-Left resize-pane -L
 bind -r C-Right resize-pane -R

Existem mais combinações de teclas (vi e emacs copy-mode e chaves de edição de linha de status) definidas em mode-keys.c que eu não me incomodei em extrair.

    
por 22.12.2014 / 17:17
1

tmux assume como padrão os valores compilados, sobrescritos por /etc/tmux.conf e, em seguida, por ~/.tmux.conf . Se o último não estiver presente, apenas funcionará com os outros valores. Isso significa que você pode simplesmente excluir o ~/.tmux.conf ou deixá-lo vazio.

Tanto no Ubuntu 12.04 quanto no Linux Mint 17, parece haver um arquivo /etc/tmux.conf padrão (nesse caso, os valores padrão compilados são obtidos).

    
por 22.12.2014 / 16:31
0

As outras respostas incluem algumas informações muito úteis que implicam a resposta, mas acho que elas não responderam exatamente à pergunta explicitamente.

Se eu entendi a página de manual do tmux corretamente, você pode redefinir uma determinada opção para o padrão com tmux set -u -g <option> .

A única maneira que sei de restaurar todas as opções de uma só vez é reinstalar o tmux.

Acho que a referência fornecida pela ariane (ou pelo menos parte dela) foi gerada logo após a instalação do tmux usando tmux show -g , tmux show -g -s e tmux show -g -w para obter as opções de sessão, servidor e janela.

    
por 01.03.2016 / 00:29
0

Você pode obter as configurações padrão com

$ tmux -f /dev/null show-options -s \; show-options -g \; list-keys > tmux.defaults.conf

O -f /dev/null especifica um arquivo de configuração nulo, então o que você tem é o que está codificado na origem.

Uma vez que é capturado em um arquivo que você poderia, na teoria , use-o como um arquivo de origem:

$ tmux unbind-key -a
$ tmux source-file tmux.defaults.conf

Eu digo em teoria porque você precisará brincar com o escape dentro do tmux.conf extraído antes que ele seja gerado corretamente. O unbind-key está lá para limpar as combinações de teclas antes de carregar o tmux.conf . Não tenho certeza se há uma maneira de eliminar as opções em massa.

    
por 06.02.2017 / 21:04

Tags