O que o comando 'set -g' faz no tmux?
-
set
é um alias paraset-option
. -
-g
é usado para definir a opção para a sessão ou janela global.
Commands which set options are as follows:
set-option [-agoqsuw] [-t target-session | target-window] option value (alias: set)
Set a window option with
-w
(equivalent to theset-window-option
command), a server option with-s
, otherwise a session option.If
-g
is specified, the global session or window option is set.
Source multiplexador de terminais tmux