apenas forneça o diretório que você deseja manualmente quando criar a divisão
:split-window -c "/dir/you/want"
por exemplo,
<prefix>
, :
, split-window -c "/var/lib/apt"
Explicação
split-window
é o comando tmux para criar uma divisão, ela usa várias opções para permitir que você especifique o tamanho, interpolações de sequência e -c
para especificar o diretório de trabalho.
de man tmux | less '+/^\s*split-window'
split-window [-bdhvP] [-c start-directory] [-l size | -p percentage] [-t target-pane] [shell-command] [-F format] (alias: splitw)
Create a new pane by splitting target-pane:
-h does a horizontal split and -v a vertical split; if neither is specified, -v is assumed.
The -l and -p options specify the size of the new pane in lines (for vertical split) or in cells (for horizontal split), or as a percentage, respectively. The -b option causes the new pane to be created to the left of or above target-pane. All other options have the same meaning as for the new-window command.
você também pode vincular o comando, por exemplo
bind '"' split-window -v -c "$PWD" # Split panes horizontal