diff options
author | hut <hut@lavabit.com> | 2010-01-06 00:59:40 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-01-06 00:59:40 +0100 |
commit | b595639f3be05ea81fb95cafa0000d3c8a99d722 (patch) | |
tree | 62c27c95ff5b4de442f0e9016d1f3afffb58d566 | |
parent | ecd1ced9c763113b9a044ad91ffa730b1f63264e (diff) | |
download | ranger-b595639f3be05ea81fb95cafa0000d3c8a99d722.tar.gz |
help: extended
-rw-r--r-- | ranger/help/index.py | 6 | ||||
-rw-r--r-- | ranger/help/movement.py | 28 |
2 files changed, 28 insertions, 6 deletions
diff --git a/ranger/help/index.py b/ranger/help/index.py index c740fed0..0f5d8727 100644 --- a/ranger/help/index.py +++ b/ranger/help/index.py @@ -8,9 +8,9 @@ |0?| This index |1?| Basic movement and browsing - |2?| Running Files - |3?| The console - |4?| File operations + |2?| (Running Files) + |3?| (The console) + |4?| (File operations) ============================================================================== diff --git a/ranger/help/movement.py b/ranger/help/movement.py index 2efbfdaa..761e9d75 100644 --- a/ranger/help/movement.py +++ b/ranger/help/movement.py @@ -5,6 +5,8 @@ 1.2. Browser control 1.3. Searching 1.4. Cycling +1.5. Bookmarks +1.6. Mouse usage ============================================================================== 1.1. Ranger has similar movement keys as vim: @@ -72,9 +74,10 @@ special in whatever context you want. ============================================================================== 1.3. Searching -Use "/" to open the search console. Enter a string and press <Enter> to -search for it in all currently visible files. Pressing "n" will move you -to the next occurance, "N" to the previous one. +Use "/" to open the search console. |3?| +Enter a string and press <Enter> to search for it in all currently +visible files. Pressing "n" will move you to the next occurance, +"N" to the previous one. You can search for more than just strings: TAB search tagged files @@ -96,5 +99,24 @@ be reversed. or reverse order ============================================================================== +1.5. Bookmarks + +Type "m<key>" to bookmark the current directory. You can re-enter this +directory by typing "`<key>". <key> can be any letter or digit. +Each time you jump to a bookmark, the special bookmark at key ` will be set +to the last directory. So typing "``" gets you back to where you were before. + +Note: The ' key is equivalent to `. +============================================================================== + +1.6. Mouse usage + +The mouse can be used to quickly enter directories which you point at, +or to scroll around with the mouse wheel. The implementation of the mouse +wheel is not stable due to problems with the ncurses library, but "it works +on my machine". + +Clicking into the preview window will usually run the file. |2?| +============================================================================== """ # vim:tw=78:sw=4:sts=8:ts=8:ft=help |