summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-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.
5'>145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207