about summary refs log tree commit diff stats
path: root/doc/colorschemes.txt
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 /doc/colorschemes.txt
parentd3ec909839a1b110232d932d0d01a2ed032fae80 (diff)
downloadranger-f597489c7f5093c0df6c5bbddcc48bf5b1a8a35c.tar.gz
updated doc/colorschemes.txt
Diffstat (limited to '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.
'Blame the previous revision' href='/akkartik/mu/blame/054dilated_reagent.cc?h=hlt&id=7b8319f4b8b7b0c80d1e194fa586bfe1f8042fef'>^
d18d1d3d ^




a796831f ^



a796831f ^

b24eb476 ^
a796831f ^
1f7e3c05 ^
79eef536 ^
21c27706 ^
79eef536 ^
a796831f ^



780b2ce1 ^
a796831f ^




a796831f ^

2d713167 ^



a796831f ^




2d713167 ^



a796831f ^



2d713167 ^



a796831f ^




d5f89e0f ^
a796831f ^



555d95c1 ^
4ad0f652 ^
a796831f ^


c4e143d6 ^

9dcbec39 ^
c4e143d6 ^


9dcbec39 ^
c4e143d6 ^


66abe7c1 ^






ce2e604e ^


c4e143d6 ^
08cf048f ^
79eef536 ^
b74443e5 ^
eb4eecea ^
66abe7c1 ^






ce2e604e ^
a17f9186 ^
a796831f ^
a796831f ^



79eef536 ^
a796831f ^
66abe7c1 ^




a072f674 ^
eb4eecea ^
a072f674 ^

a796831f ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166