summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-17 14:05:15 +0200
committerhut <hut@lavabit.com>2010-04-17 14:05:15 +0200
commit5588ccbab5cb30fb65a2f8e4aa4499d1567cf6ee (patch)
tree55d9bfedcd1baffff2be5c6cd6211147e9c68554
parentc82e1c27a1033b3d7cbe3dddcfeed126e2632c5f (diff)
downloadranger-5588ccbab5cb30fb65a2f8e4aa4499d1567cf6ee.tar.gz
help.starting: updated
-rw-r--r--ranger/help/starting.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/ranger/help/starting.py b/ranger/help/starting.py
index 29921ffc..88f90184 100644
--- a/ranger/help/starting.py
+++ b/ranger/help/starting.py
@@ -66,7 +66,8 @@ in the class CustomApplications which starts with "app_" can be used
 as a program in the "open with" prompt.
 
 You're encouraged to add your own program definitions to the list.  Refer to
-documentation in ranger/applications.py for more information on this subject.
+the existing examples in the apps.py, it should be easy to adapt it for your
+purposes.
 
 
 ==============================================================================
@@ -75,8 +76,8 @@ documentation in ranger/applications.py for more information on this subject.
 Sometimes there are multiple variants to open a file.  For example, ranger
 gives you 2 ways of opening a video (by default):
 
-	0	fullscreen
-	1	windowed
+	0	windowed
+	1	fullscreen
 
 By specifying a mode, you can select one of those.  The "l" key will
 start a file in mode 0. "4l" will start the file in mode 4 etc.
@@ -92,7 +93,7 @@ For a list of all programs and modes, see ranger/defaults/apps.py
 Flags give you a way to modify the behaviour of the spawned process.
 
 	s	Silent mode.  Output will be discarded.
-	d	Detach the process.
+	d	Detach the process.  (Run in background)
 	p	Redirect output to the pager
 
 For example, "open with: p" will pipe the output of that process into
lines where is expected' href='/akspecs/ranger/commit/ranger/gui/widgets/pager.py?id=ab41c7766ced3f1b8f6b4ed317f0db4e0d71b897'>ab41c776 ^
b3d031a9 ^
d1a1173d ^








dded3cb8 ^
d1a1173d ^







d5e6a43d ^
d1a1173d ^







7dcc0dd0 ^
7a66f174 ^
0b2f8488 ^
d1a1173d ^
d5e6a43d ^
d1a1173d ^







d5e6a43d ^
5bc4cb75 ^
1134e3ab ^
d5e6a43d ^
d1a1173d ^














798c94a6 ^
d1a1173d ^

798c94a6 ^
d1a1173d ^




76791a70 ^
d1a1173d ^










0b2f8488 ^
76791a70 ^
0b2f8488 ^
a9bd6171 ^
b3d031a9 ^

0b2f8488 ^

d1a1173d ^






bedfed3d ^
d1a1173d ^











76791a70 ^





d1a1173d ^
0614b5e4 ^
76791a70 ^




0614b5e4 ^



76791a70 ^

0614b5e4 ^



76791a70 ^

d1a1173d ^











































b3d031a9 ^
d1a1173d ^

















b3d031a9 ^



d1a1173d ^

















811e8fe5 ^
d1a1173d ^


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
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239