私は他の場所で同様の問題につまずい良い答えに比べ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で上記の作品とあなたはお好みのシェルに基づいて、それを変更する必要があります
;
セミコロンの後にさらにコマンドを指定することはできませんranger
でした。