Explorar el Código

nuke plugin: use $VISUAL environment variable

falls back to previous behavior if $VISUAL is not set ($EDITOR then vi)
master
tchici hace 4 años
padre
commit
ea81864e03
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 8C175DAE1F09A006
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      plugins/nuke

+ 1
- 1
plugins/nuke Ver fichero

@@ -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


Cargando…
Cancelar
Guardar