diff options
author | hut <hut@lavabit.com> | 2010-04-07 15:50:08 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-07 15:50:08 +0200 |
commit | 8d89c6f3a7cf6b0c8abc2ff68ecc7201ac08e872 (patch) | |
tree | 610dd3acfdac10ebe1d766a779897207ea6dfb33 /README | |
parent | 55435343b142c424619e3072475ca8b3366d109c (diff) | |
parent | f45f9734d2ff9fd6b68ff6c879d5b07b0e5c7d02 (diff) | |
download | ranger-8d89c6f3a7cf6b0c8abc2ff68ecc7201ac08e872.tar.gz |
Merge branch 'devel' into newkey
Conflicts: ranger/core/actions.py ranger/defaults/keys.py ranger/ext/direction.py ranger/gui/ui.py ranger/gui/widgets/browserview.py ranger/gui/widgets/pager.py
Diffstat (limited to 'README')
-rw-r--r-- | README | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/README b/README index b97b5ed7..07837688 100644 --- a/README +++ b/README @@ -26,6 +26,7 @@ About * Author: Roman Zimbelmann * Email: romanz@lavabit.com +* Website: http://savannah.nongnu.org/projects/ranger * Git repo: http://git.savannah.gnu.org/cgit/ranger.git * Version: 1.0.4 @@ -90,9 +91,8 @@ Now use the arrow keys to navigate, press enter to open a file. A list of commands with short descriptions can be viewed by pressing "?" inside the program and following the instructions. -The file code/keys.rb contains all key combinations, so that's another -place you may want to check out. -More extensive documentation will be written when enough users ask me to :) +The file ranger/defaults/keys.py contains all key combinations, so that's +another place you may want to check out. Opening Files with Ranger @@ -122,3 +122,16 @@ information, check out the source code. Also, see the file HACKING for more detailed instructions on modifying the program. + + +Tips +---- + +Change the directory of your parent shell when you exit ranger: + +ranger() { + $(which ranger) $@ && + cd "$(grep \^\' ~/.ranger/bookmarks | cut -b3-)" +} + +This can be put into your ~/.bashrc or something similar. |