Ver código fonte

nuke plugin: use $VISUAL environment variable

falls back to previous behavior if $VISUAL is not set ($EDITOR then vi)
master
tchici 4 anos atrás
pai
commit
ea81864e03
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 8C175DAE1F09A006
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      plugins/nuke

+ 1
- 1
plugins/nuke Ver arquivo

@@ -76,7 +76,7 @@ IMAGE_CACHE_PATH="$(dirname "$1")"/.thumbs

FPATH="$1"
FNAME=$(basename "$1")
EDITOR="${EDITOR:-vi}"
EDITOR="${VISUAL:-${EDITOR:-vi}}"
PAGER="${PAGER:-less -R}"
ext="${FNAME##*.}"
if [ -n "$ext" ]; then


Carregando…
Cancelar
Salvar