Ver código fonte

Fix tmux version check

master
Arun Prakash Jana 4 anos atrás
pai
commit
56eea7e195
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      plugins/preview-tui

+ 1
- 1
plugins/preview-tui Ver arquivo

@@ -106,7 +106,7 @@ if [ "$PREVIEW_MODE" ] ; then
exit 0
fi

if [ -e "${TMUX%%,*}" ] && [ "$(tmux -V | cut -c6)" -eq 3 ] ; then
if [ -e "${TMUX%%,*}" ] && tmux -V | grep -q '[ -][3456789]\.' ; then
if [ -z "$SPLIT" ] && [ $(($(tput lines) * 2)) -gt "$(tput cols)" ] ; then
SPLIT='v'
elif [ "$SPLIT" != 'v' ] ; then


Carregando…
Cancelar
Salvar