Я наткнулся на похожий вопрос в другом месте с лучшим ответом по сравнению с Gambai и его другими предложенными вариантами. Так лучше.
- он позаботится о созданном файле, поместив его в папку tmp, чтобы он мог быть удален системой
- это более чистый код (хотя ответ Gambai можно преобразовать в функцию)
В файле оболочки уже есть функция в git-репозитории рейнджера:
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"
}
Вы можете поместить эту функцию в файл rc оболочки вашего любимого (например, ~/.zshrc
) и либо создать псевдоним и / или связать его с комбинацией клавиш (опять же, оба могут войти в файл rc):
alias nav=ranger-cd
и / или
# 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"
Отказ от ответственности: вышеуказанный bindkey
работает в ZSH, и вы должны изменить его в зависимости от предпочитаемой вами оболочки