Explorar el Código

Remove trailing spaces

master
Arun Prakash Jana hace 4 años
padre
commit
9e3bd377b0
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      plugins/fzcd

+ 3
- 3
plugins/fzcd Ver fichero

@@ -24,14 +24,14 @@ if [ -n "$sel" ]; then
# by fzf command is absolute
case $sel in
/*) nnn_cd "$sel" ;;
*)
*)
# Remove "./" prefix if it exists
sel="${sel#./}"
if [ "$PWD" = "/" ]; then
nnn_cd "/$sel"
else
nnn_cd "$PWD/$sel"
fi;;
esac
esac
fi

Cargando…
Cancelar
Guardar