about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-12-22 03:16:12 +0100
committerhut <hut@lavabit.com>2010-12-22 03:16:12 +0100
commitf597489c7f5093c0df6c5bbddcc48bf5b1a8a35c (patch)
treea779e49c630b168c75229fcd3cc1af0b5873fc25
parentd3ec909839a1b110232d932d0d01a2ed032fae80 (diff)
downloadranger-f597489c7f5093c0df6c5bbddcc48bf5b1a8a35c.tar.gz
updated doc/colorschemes.txt
-rw-r--r--doc/colorschemes.txt21
1 files changed, 6 insertions, 15 deletions
diff --git a/doc/colorschemes.txt b/doc/colorschemes.txt
index e7bc2c0a..b14710ce 100644
--- a/doc/colorschemes.txt
+++ b/doc/colorschemes.txt
@@ -1,10 +1,6 @@
 Colorschemes
 ============
 
-Abstract
---------
-
-
 This text explains colorschemes and how they work.
 
 
@@ -66,20 +62,15 @@ Specify a Colorscheme
 
 Colorschemes are searched for in these directories:
 ~/.config/ranger/colorschemes/
-/ranger/colorschemes/
+/path/to/ranger/colorschemes/
 
 To specify which colorscheme to use, define the variable "colorscheme"
 in your options.py:
-colorscheme = colorschemes.default
-
-This means, use the (one) colorscheme contained in
-either ~/.config/ranger/colorschemes/default.py or /ranger/colorschemes/default.py.
+colorscheme = "default"
 
-You can define more than one colorscheme in a colorscheme file.  The
-one named "Scheme" will be chosen in that case.  If there is no colorscheme
-named "Scheme", an arbitrary one will be picked.  You could also explicitly
-specify which colorscheme to use in your options.py:
-colorscheme = colorschemes.default.MyOtherScheme
+This means, use the colorscheme contained in
+either ~/.config/ranger/colorschemes/default.py or
+/path/to/ranger/colorschemes/default.py.
 
 
 Adapt a colorscheme
@@ -91,7 +82,7 @@ want the exact same colors as in the default colorscheme, but
 the directories to be green rather than blue, because you find the
 blue hard to read.
 
-This is done in the jungle colorscheme ranger.colorschemes.jungle.Scheme,
+This is done in the jungle colorscheme ranger/colorschemes/jungle,
 check it out for implementation details.  In short, I made a subclass
 of the default scheme, set the initial colors to the result of the
 default use() method and modified the colors how I wanted.