diff options
-rw-r--r-- | doc/cd-after-exit.txt | 4 | ||||
-rwxr-xr-x | ranger.py | 16 |
2 files changed, 9 insertions, 11 deletions
diff --git a/doc/cd-after-exit.txt b/doc/cd-after-exit.txt index 18598cd3..567c20ff 100644 --- a/doc/cd-after-exit.txt +++ b/doc/cd-after-exit.txt @@ -113,6 +113,10 @@ or, if properly installed: bash$ source ranger ranger +A convenient way of using this feature is adding this line to your bashrc: + + alias rn='source ranger ranger' + == Open issues diff --git a/ranger.py b/ranger.py index a81d0422..4035536e 100755 --- a/ranger.py +++ b/ranger.py @@ -3,17 +3,11 @@ # ranger: Browse your files inside the terminal. # ----------------------------------------------------------------------------- -# An embedded shell script. Assuming this file is /usr/bin/ranger, -# this hack allows you to use the cd-after-exit feature by typing: -# source ranger ranger -# Now when you quit ranger, it should change the directory of the -# parent shell to where you have last been in ranger. -# Works with at least bash and zsh. -# -# A convenient way of using this feature is adding this line to your bashrc: -# alias rn='source ranger ranger' -# or, if ranger is not installed properly: -# alias rn='source /path/to/ranger.py /path/to/ranger.py' +# An embedded shell script. It allows you to change the directory +# of the parent shell to the last visited directory in ranger after exit. +# For more information, check out doc/cd-after-exit.txt +# To enable this, start ranger with: +# source /path/ranger /path/ranger """": if [ $1 ]; then RANGER="$1" |