Me encontré con una pregunta similar en otro lugar con una mejor respuesta en comparación con Gambai y sus otras variantes propuestas. Es mejor desde entonces.
- se encargará del archivo creado colocándolo en la carpeta tmp para que el sistema pueda eliminarlo
- es un código más limpio (aunque la respuesta de Gambai se puede convertir en una función)
Ya hay una función en un archivo de shell en el repositorio git de ranger:
https://github.com/ranger/ranger/blob/master/examples/bash_automatic_cd.sh
function ranger-cd {
# create a temp file and store the name
tempfile="$(mktemp -t tmp.XXXXXX)"
# run ranger and ask it to output the last path into the
# temp file
ranger --choosedir="$tempfile" "${@:-$(pwd)}"
# if the temp file exists read and the content of the temp
# file was not equal to the current path
test -f "$tempfile" &&
if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
# change directory to the path in the temp file
cd -- "$(cat "$tempfile")"
fi
# its not super necessary to have this line for deleting
# the temp file since Linux should handle it on the next
# boot
rm -f -- "$tempfile"
}
Puede poner esta función en el ~/.zshrc
archivo rc de shell de su favorito (por ejemplo ) y crear un alias y / o vincularlo a una combinación de teclas (de nuevo, ambos pueden ir en el archivo rc):
alias nav=ranger-cd
y / o
# This will run the function by Ctrl+O through returning
# the string "ranger-cd" in addition to a new-line character
# to act as Enter key-press
bindkey -s "^o" "ranger-cd\n"
Descargo de responsabilidad: lo bindkey
anterior funciona en ZSH y debe cambiarlo en función de su shell preferido
;
y luego especificar más comandos después del punto y coma que, supongo que se ejecutan en el momento en que cierraranger
, ¡gracias!