diff options
author | hut <hut@lavabit.com> | 2011-01-04 01:49:49 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-01-04 01:49:49 +0100 |
commit | 2719decc9a05162516fd91a40a7b5f77e5eb1be0 (patch) | |
tree | abdd7a006ff02d57bf3003e6ab408878ad863d1c | |
parent | e70f8c831ec35f2cdd476e84a7e402293788a6b0 (diff) | |
download | ranger-2719decc9a05162516fd91a40a7b5f77e5eb1be0.tar.gz |
Extended help/index.py
-rw-r--r-- | ranger/help/index.py | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/ranger/help/index.py b/ranger/help/index.py index 9ade3098..a10a8406 100644 --- a/ranger/help/index.py +++ b/ranger/help/index.py @@ -14,7 +14,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. """ - Ranger - main help file + ranger %s - main help file k Move around: Use the cursor keys, or "h" to go left, h l "j" to go down, "k" to go up, "l" to go right. j @@ -30,7 +30,23 @@ ============================================================================== -0.1. General information +0.1. About ranger + +Ranger is a free console file manager that gives you greater flexibility +and a good overview of your files without having to leave your *nix console. +It visualizes the directory tree in two dimensions: the directory hierarchy +on one, lists of files on the other, with a preview to the right so you know +where you'll be going. + +The default keys are similar to those of Vim, Emacs and Midnight Commander, +though Ranger is easily controllable with just the arrow keys or the mouse. + +The program is written in Python (2.6 or 3.1) and uses curses for the +text-based user interface. + + +============================================================================== +0.2. About these help pages Annotations like |1?| indicate that the topic is explained in more detail in chapter 1. You can type 1? to view it. @@ -38,7 +54,7 @@ You can type 16? to open chapter 1, paragraph 6. ============================================================================== -0.2. Copying +0.3. Copying Copyright (C) 2009, 2010 Roman Zimbelmann <romanz@lavabit.com> @@ -58,4 +74,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. ============================================================================== """ + +import ranger +__doc__ %= ranger.__version__ # vim:tw=78:sw=4:sts=8:ts=8:ft=help |