Blame


1 bba111bc 2021-03-28 op .\" Copyright (c) 2021 Omar Polo <op@omarpolo.com>
2 bba111bc 2021-03-28 op .\"
3 bba111bc 2021-03-28 op .\" Permission to use, copy, modify, and distribute this software for any
4 bba111bc 2021-03-28 op .\" purpose with or without fee is hereby granted, provided that the above
5 bba111bc 2021-03-28 op .\" copyright notice and this permission notice appear in all copies.
6 bba111bc 2021-03-28 op .\"
7 bba111bc 2021-03-28 op .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 bba111bc 2021-03-28 op .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 bba111bc 2021-03-28 op .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 bba111bc 2021-03-28 op .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 bba111bc 2021-03-28 op .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 bba111bc 2021-03-28 op .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 bba111bc 2021-03-28 op .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 bba111bc 2021-03-28 op .Dd $Mdocdate: March 28 2021$
15 bba111bc 2021-03-28 op .Dt TELESCOPE 1
16 bba111bc 2021-03-28 op .Os
17 bba111bc 2021-03-28 op .Sh NAME
18 bba111bc 2021-03-28 op .Nm telescope
19 bba111bc 2021-03-28 op .Nd Gemini client
20 bba111bc 2021-03-28 op .Sh SYNOPSIS
21 bba111bc 2021-03-28 op .Nm
22 bba111bc 2021-03-28 op .Bk -words
23 97870a34 2021-07-15 op .Op Fl Chnv
24 c92e529c 2021-06-15 op .Op Fl c Pa config
25 bba111bc 2021-03-28 op .Op Ar URL
26 bba111bc 2021-03-28 op .Ek
27 bba111bc 2021-03-28 op .Sh DESCRIPTION
28 bba111bc 2021-03-28 op .Nm
29 bba111bc 2021-03-28 op is an interactive browser for the Gemini protocol.
30 bba111bc 2021-03-28 op It is able to process text/gemini and more in general every text/* file.
31 bba111bc 2021-03-28 op .Nm
32 bba111bc 2021-03-28 op also features tabs, bookmarks and out-of-band TOFU verification.
33 c92e529c 2021-06-15 op .Pp
34 c92e529c 2021-06-15 op The arguments are as follows:
35 dc761924 2021-07-15 op .Bl -tag -width xxxxxxxxxxxxx
36 97870a34 2021-07-15 op .It Fl C , Fl -colors
37 97870a34 2021-07-15 op Show all available colors and exit.
38 c92e529c 2021-06-15 op .It Fl c Pa config
39 c92e529c 2021-06-15 op Specify an alternative configuration file.
40 c92e529c 2021-06-15 op By default
41 c92e529c 2021-06-15 op .Pa $HOME/.telescope/config
42 c92e529c 2021-06-15 op is loaded.
43 ccc5591f 2021-07-15 op .It Fl h , Fl -help
44 ccc5591f 2021-07-15 op Display version and usage.
45 ccc5591f 2021-07-15 op .It Fl n
46 ccc5591f 2021-07-15 op Configtest mode.
47 ccc5591f 2021-07-15 op Only check the configuration file for validity.
48 dc761924 2021-07-15 op .It Fl v , Fl -version
49 dc761924 2021-07-15 op Display version.
50 c92e529c 2021-06-15 op .El
51 bba111bc 2021-03-28 op .Sh TOFU
52 bba111bc 2021-03-28 op .Nm
53 bba111bc 2021-03-28 op aims to use the "Trust, but Verify (where appropriate)" approach.
54 bba111bc 2021-03-28 op The idea is to define three level of verification for a certificate:
55 bba111bc 2021-03-28 op .Bl -tag -width 12m
56 bba111bc 2021-03-28 op .It untrusted
57 bba111bc 2021-03-28 op the server fingerprint does NOT match the stored value
58 bba111bc 2021-03-28 op .It trusted
59 bba111bc 2021-03-28 op the server fingerprint matches the store one
60 bba111bc 2021-03-28 op .It verified
61 bba111bc 2021-03-28 op the fingerprint matches and has been verified out-of-band
62 bba111bc 2021-03-28 op .El
63 bba111bc 2021-03-28 op .Pp
64 bba111bc 2021-03-28 op Most of the time the
65 bba111bc 2021-03-28 op .Dq trusted
66 bba111bc 2021-03-28 op level is enough, but where is appropriate users should be able to
67 bba111bc 2021-03-28 op verify out-of-band the certificate.
68 bba111bc 2021-03-28 op .Pp
69 bba111bc 2021-03-28 op At the moment, there is no built-in support for an out-of-band
70 bba111bc 2021-03-28 op verification though.
71 bba111bc 2021-03-28 op .Pp
72 bba111bc 2021-03-28 op Known certificates are store in
73 bba111bc 2021-03-28 op .Pa ~/.telescope/known_hosts
74 bba111bc 2021-03-28 op with a format similar to the
75 bba111bc 2021-03-28 op .Xr ssh 1 Ns '
76 bba111bc 2021-03-28 op .Pa known_hosts
77 bba111bc 2021-03-28 op file.
78 bba111bc 2021-03-28 op Each line is a record and it's made up by three fields, separated by a
79 bba111bc 2021-03-28 op single space, according to the following format:
80 bba111bc 2021-03-28 op .Dq HOST HASH TRUSTED
81 bba111bc 2021-03-28 op where:
82 bba111bc 2021-03-28 op .Bl -tag -width 12m
83 bba111bc 2021-03-28 op .It HOST
84 eb4388ee 2021-04-25 op the hostname, optionally followed by a colon (":") and a port number.
85 bba111bc 2021-03-28 op .It HASH
86 bba111bc 2021-03-28 op is the hash of the certificate, as outputted by
87 6c04e8b6 2021-04-01 op .Xr tls_peer_cert_hash 3 .
88 bba111bc 2021-03-28 op .It TRUSTED
89 bba111bc 2021-03-28 op a single digit.
90 bba111bc 2021-03-28 op 0 means trusted, 1 verified.
91 bba111bc 2021-03-28 op .El
92 bba111bc 2021-03-28 op .Sh DEFAULT KEY BINDINGS
93 bba111bc 2021-03-28 op The default key bindings are very similar to GNU Emacs, but care has
94 bba111bc 2021-03-28 op been taken to include also bindings familiar for
95 bba111bc 2021-03-28 op .Xr vi 1
96 bba111bc 2021-03-28 op and
97 bba111bc 2021-03-28 op .Dq CUA
98 bba111bc 2021-03-28 op users.
99 bba111bc 2021-03-28 op In the following examples, C-x means Control-x, M-x means Meta-x,
100 bba111bc 2021-03-28 op where the Meta key may be either a special key on the keyboard or the
101 bba111bc 2021-03-28 op ALT key; otherwise ESC followed by the key X works as well, and C-M-x
102 bba111bc 2021-03-28 op means to press the key X together with both Control and Meta.
103 bba111bc 2021-03-28 op .Pp
104 bba111bc 2021-03-28 op Keys are usually a single character, like
105 bba111bc 2021-03-28 op .Sq p
106 bba111bc 2021-03-28 op or
107 bba111bc 2021-03-28 op .Sq n ,
108 bba111bc 2021-03-28 op but some special keys are accepted as well.
109 bba111bc 2021-03-28 op .Pp
110 bba111bc 2021-03-28 op .Bl -tag -width 16m -offset indent -compact
111 bba111bc 2021-03-28 op .It <up>
112 bba111bc 2021-03-28 op Up arrow
113 bba111bc 2021-03-28 op .It <down>
114 bba111bc 2021-03-28 op Down arrow
115 bba111bc 2021-03-28 op .It <left>
116 bba111bc 2021-03-28 op Left arrow
117 bba111bc 2021-03-28 op .It <right>
118 bba111bc 2021-03-28 op Right arrow
119 bba111bc 2021-03-28 op .It <prior>
120 bba111bc 2021-03-28 op Previous page/Page up
121 bba111bc 2021-03-28 op .It <next>
122 bba111bc 2021-03-28 op Next page/Page down
123 bba111bc 2021-03-28 op .It <home>
124 bba111bc 2021-03-28 op Home
125 bba111bc 2021-03-28 op .It <end>
126 bba111bc 2021-03-28 op End
127 bba111bc 2021-03-28 op .It <f0> thru <f63>
128 bba111bc 2021-03-28 op Function keys
129 bba111bc 2021-03-28 op .It del or backspace
130 bba111bc 2021-03-28 op Backspace
131 bba111bc 2021-03-28 op .It esc
132 bba111bc 2021-03-28 op Escape
133 bba111bc 2021-03-28 op .It space or spc
134 bba111bc 2021-03-28 op Space
135 bba111bc 2021-03-28 op .It enter or ret
136 bba111bc 2021-03-28 op Enter
137 bba111bc 2021-03-28 op .It tab
138 bba111bc 2021-03-28 op Tab
139 8dc60352 2021-06-15 op .It backtab
140 8dc60352 2021-06-15 op Depends on the configuration of the terminal emulator.
141 8dc60352 2021-06-15 op Usually is shift tab though.
142 bba111bc 2021-03-28 op .El
143 bba111bc 2021-03-28 op .Ss GNU Emacs-like keys
144 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
145 bba111bc 2021-03-28 op .It C-p
146 7dbaef94 2021-04-22 op previous-line
147 bba111bc 2021-03-28 op .It C-n
148 7dbaef94 2021-04-22 op next-line
149 bba111bc 2021-03-28 op .It C-f
150 7dbaef94 2021-04-22 op forward-char
151 bba111bc 2021-03-28 op .It C-b
152 7dbaef94 2021-04-22 op backward-char
153 bba111bc 2021-03-28 op .It M-{
154 7dbaef94 2021-04-22 op backward-paragraph
155 bba111bc 2021-03-28 op .It M-}
156 7dbaef94 2021-04-22 op forward-paragraph
157 bba111bc 2021-03-28 op .It C-a
158 7dbaef94 2021-04-22 op move-beginning-of-line
159 bba111bc 2021-03-28 op .It C-e
160 7dbaef94 2021-04-22 op move-end-of-line
161 bba111bc 2021-03-28 op .It M-v, M-space
162 7dbaef94 2021-04-22 op scroll-up
163 bba111bc 2021-03-28 op .It C-v, space
164 7dbaef94 2021-04-22 op scroll-down
165 bba111bc 2021-03-28 op .It M-<
166 7dbaef94 2021-04-22 op beginning-of-buffer
167 bba111bc 2021-03-28 op .It M->
168 7dbaef94 2021-04-22 op end-of-buffer
169 bba111bc 2021-03-28 op .It C-x C-c
170 7dbaef94 2021-04-22 op kill-telescope
171 bba111bc 2021-03-28 op .It C-g
172 7dbaef94 2021-04-22 op clear-minibuf
173 bba111bc 2021-03-28 op .It M-x
174 7dbaef94 2021-04-22 op execute-extended-command
175 61251035 2021-06-26 op .It C-c {
176 61251035 2021-06-26 op dec-fill-column
177 61251035 2021-06-26 op .It C-c }
178 61251035 2021-06-26 op inc-fill-column
179 1c412d48 2021-06-25 op .It C-c p
180 1c412d48 2021-06-25 op previous-heading
181 1c412d48 2021-06-25 op .It C-c n
182 1c412d48 2021-06-25 op next-heading
183 157d4810 2021-06-24 op .It >
184 157d4810 2021-06-24 op load-url
185 f2ab2540 2021-07-14 op .It <
186 f2ab2540 2021-07-14 op load-current-url
187 bba111bc 2021-03-28 op .It C-x C-f
188 7dbaef94 2021-04-22 op load-url
189 bba111bc 2021-03-28 op .It C-x M-f
190 7dbaef94 2021-04-22 op load-current-url
191 bba111bc 2021-03-28 op .It C-x t 0
192 7dbaef94 2021-04-22 op tab-close
193 bba111bc 2021-03-28 op .It C-x t 1
194 7dbaef94 2021-04-22 op tab-close-other
195 bba111bc 2021-03-28 op .It C-x t 2
196 7dbaef94 2021-04-22 op tab-new
197 bba111bc 2021-03-28 op .It C-x t o
198 7dbaef94 2021-04-22 op tab-next
199 bba111bc 2021-03-28 op .It C-x t O
200 7dbaef94 2021-04-22 op tab-previous
201 bba111bc 2021-03-28 op .It C-x t m
202 7dbaef94 2021-04-22 op tab-move
203 bba111bc 2021-03-28 op .It C-x t M
204 7dbaef94 2021-04-22 op tab-move-to
205 05c5cf0c 2021-07-13 op .It B, C-M-b
206 7dbaef94 2021-04-22 op previous-page
207 05c5cf0c 2021-07-13 op .It F, C-M-f
208 7dbaef94 2021-04-22 op next-page
209 bba111bc 2021-03-28 op .It <f7> a
210 7dbaef94 2021-04-22 op bookmark-page
211 bba111bc 2021-03-28 op .It <f7> <f7>
212 7dbaef94 2021-04-22 op list-bookmarks
213 12cf7d80 2021-07-15 op .It C-z
214 12cf7d80 2021-07-15 op suspend-telescope
215 bba111bc 2021-03-28 op .El
216 bba111bc 2021-03-28 op .Ss Xr vi 1 Ns -like keys
217 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
218 bba111bc 2021-03-28 op .It k
219 7dbaef94 2021-04-22 op previous-line
220 bba111bc 2021-03-28 op .It j
221 7dbaef94 2021-04-22 op next-line
222 bba111bc 2021-03-28 op .It l
223 7dbaef94 2021-04-22 op forward-char
224 bba111bc 2021-03-28 op .It h
225 7dbaef94 2021-04-22 op backward-char
226 bba111bc 2021-03-28 op .It {
227 7dbaef94 2021-04-22 op backward-paragraph
228 bba111bc 2021-03-28 op .It }
229 7dbaef94 2021-04-22 op forward-paragraph
230 bba111bc 2021-03-28 op .It ^
231 7dbaef94 2021-04-22 op move-beginning-of-line
232 bba111bc 2021-03-28 op .It $
233 7dbaef94 2021-04-22 op move-end-of-line
234 bba111bc 2021-03-28 op .It K
235 7dbaef94 2021-04-22 op scroll-line-up
236 bba111bc 2021-03-28 op .It J
237 7dbaef94 2021-04-22 op scroll-line-down
238 bba111bc 2021-03-28 op .It g g
239 7dbaef94 2021-04-22 op beginning-of-buffer
240 6c04e8b6 2021-04-01 op .It G
241 7dbaef94 2021-04-22 op end-of-buffer
242 bba111bc 2021-03-28 op .It g D
243 7dbaef94 2021-04-22 op tab-close
244 bba111bc 2021-03-28 op .It g N
245 7dbaef94 2021-04-22 op tab-new
246 bba111bc 2021-03-28 op .It g t
247 7dbaef94 2021-04-22 op tab-next
248 bba111bc 2021-03-28 op .It g T
249 7dbaef94 2021-04-22 op tab-previous
250 bba111bc 2021-03-28 op .It g M-t
251 7dbaef94 2021-04-22 op tab-move
252 bba111bc 2021-03-28 op .It g M-T
253 7dbaef94 2021-04-22 op tab-move-to
254 bba111bc 2021-03-28 op .It H
255 7dbaef94 2021-04-22 op previous-page
256 bba111bc 2021-03-28 op .It L
257 7dbaef94 2021-04-22 op next-page
258 bba111bc 2021-03-28 op .It q
259 7dbaef94 2021-04-22 op kill-telescope
260 bba111bc 2021-03-28 op .It ESC
261 7dbaef94 2021-04-22 op clear-minibuf
262 bba111bc 2021-03-28 op .It :
263 7dbaef94 2021-04-22 op execute-extended-command
264 bba111bc 2021-03-28 op .El
265 bba111bc 2021-03-28 op .Ss CUA-like keys
266 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
267 bba111bc 2021-03-28 op .It <up>
268 7dbaef94 2021-04-22 op previous-line
269 bba111bc 2021-03-28 op .It <down>
270 7dbaef94 2021-04-22 op next-line
271 bba111bc 2021-03-28 op .It <right>
272 7dbaef94 2021-04-22 op forward-char
273 bba111bc 2021-03-28 op .It <left>
274 7dbaef94 2021-04-22 op backward-char
275 12cf7d80 2021-07-15 op .It <home>
276 12cf7d80 2021-07-15 op move-beginning-of-line
277 12cf7d80 2021-07-15 op .It <end>
278 12cf7d80 2021-07-15 op move-end-of-line
279 bba111bc 2021-03-28 op .It <prior>
280 7dbaef94 2021-04-22 op scroll-up
281 bba111bc 2021-03-28 op .It <next>
282 7dbaef94 2021-04-22 op scroll-down
283 25f5824b 2021-07-08 op .It C-w
284 25f5824b 2021-07-08 op tab-close
285 3c3af0fd 2021-07-08 op .It C-t
286 3c3af0fd 2021-07-08 op tab-new
287 3c3af0fd 2021-07-08 op .It M-<prior>
288 3c3af0fd 2021-07-08 op tab-previous
289 3c3af0fd 2021-07-08 op .It M-<next>
290 3c3af0fd 2021-07-08 op tab-next
291 bba111bc 2021-03-28 op .It M-<left>
292 7dbaef94 2021-04-22 op previous-page
293 bba111bc 2021-03-28 op .It M-<right>
294 7dbaef94 2021-04-22 op next-page
295 661233ed 2021-07-14 op .It <f5>
296 661233ed 2021-07-14 op reload-page
297 661233ed 2021-07-14 op .It r
298 661233ed 2021-07-14 op reload-page
299 bba111bc 2021-03-28 op .El
300 bba111bc 2021-03-28 op .Ss Neither Emacs nor vi specific
301 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
302 7a014cef 2021-04-01 op .It <f1>
303 7dbaef94 2021-04-22 op toggle-help
304 bba111bc 2021-03-28 op .It enter
305 7dbaef94 2021-04-22 op push-button
306 bba111bc 2021-03-28 op .It M-enter
307 7dbaef94 2021-04-22 op push-button-new-tab
308 bba111bc 2021-03-28 op .It M-tab
309 7dbaef94 2021-04-22 op previous-button
310 8dc60352 2021-06-15 op .It backtab
311 8dc60352 2021-06-15 op previous-button
312 bba111bc 2021-03-28 op .It tab
313 7dbaef94 2021-04-22 op next-button
314 3360ef1b 2021-07-14 op .It M-t
315 3360ef1b 2021-07-14 op tab-select
316 dad288ec 2021-07-15 op .It M-l
317 753c6ac7 2021-07-14 op link-select
318 753c6ac7 2021-07-14 op .It M-/
319 753c6ac7 2021-07-14 op swiper
320 bba111bc 2021-03-28 op .El
321 bba111bc 2021-03-28 op .Ss Minibuffer-specific keys
322 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
323 bba111bc 2021-03-28 op .It enter
324 7dbaef94 2021-04-22 op mini-complete-and-exit
325 bba111bc 2021-03-28 op .It C-g
326 7dbaef94 2021-04-22 op mini-abort
327 bba111bc 2021-03-28 op .It ESC
328 7dbaef94 2021-04-22 op mini-abort
329 bba111bc 2021-03-28 op .It C-d
330 7dbaef94 2021-04-22 op mini-delete-char
331 bba111bc 2021-03-28 op .It del
332 7dbaef94 2021-04-22 op mini-delete-backward-char
333 bba111bc 2021-03-28 op .It backspace
334 7dbaef94 2021-04-22 op mini-delete-backward-char
335 bba111bc 2021-03-28 op .It C-h
336 7dbaef94 2021-04-22 op mini-delete-backward-char
337 bba111bc 2021-03-28 op .It C-b
338 7dbaef94 2021-04-22 op backward-char
339 bba111bc 2021-03-28 op .It C-f
340 7dbaef94 2021-04-22 op forward-char
341 bba111bc 2021-03-28 op .It <left>
342 7dbaef94 2021-04-22 op backward-char
343 bba111bc 2021-03-28 op .It <right>
344 7dbaef94 2021-04-22 op forward-char
345 bba111bc 2021-03-28 op .It C-e
346 7dbaef94 2021-04-22 op move-end-of-line
347 bba111bc 2021-03-28 op .It C-a
348 7dbaef94 2021-04-22 op move-beginning-of-line
349 bba111bc 2021-03-28 op .It <end>
350 7dbaef94 2021-04-22 op move-end-of-line
351 bba111bc 2021-03-28 op .It <home>
352 7dbaef94 2021-04-22 op move-beginning-of-line
353 bba111bc 2021-03-28 op .It C-k
354 7dbaef94 2021-04-22 op mini-kill-line
355 bba111bc 2021-03-28 op .It M-p
356 7dbaef94 2021-04-22 op mini-previous-history-element
357 bba111bc 2021-03-28 op .It M-n
358 7dbaef94 2021-04-22 op mini-next-history-element
359 e7b982f4 2021-07-14 op .It C-p
360 e7b982f4 2021-07-14 op previous-completion
361 e7b982f4 2021-07-14 op .It C-n
362 dffb2592 2021-07-14 op next-completion
363 dffb2592 2021-07-14 op .It <up>
364 dffb2592 2021-07-14 op previous-completion
365 dffb2592 2021-07-14 op .It <down>
366 e7b982f4 2021-07-14 op next-completion
367 e7b982f4 2021-07-14 op .It tab
368 e7b982f4 2021-07-14 op insert-current-candidate
369 bba111bc 2021-03-28 op .El
370 bba111bc 2021-03-28 op .Sh INTERACTIVE COMMANDS
371 bba111bc 2021-03-28 op Follows the documentation for the interactive commands.
372 bba111bc 2021-03-28 op These commands can be bound to a key or executed with
373 bba111bc 2021-03-28 op .Ic execute-extended-command .
374 bba111bc 2021-03-28 op .Ss Movement commands
375 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
376 bba111bc 2021-03-28 op .It Ic backward-char
377 bba111bc 2021-03-28 op Move point one character backward.
378 bba111bc 2021-03-28 op .It Ic backward-paragraph
379 bba111bc 2021-03-28 op Move point one paragraph backward.
380 bba111bc 2021-03-28 op .It Ic beginning-of-buffer
381 bba111bc 2021-03-28 op Move point to the beginning of the buffer.
382 bba111bc 2021-03-28 op .It Ic end-of-buffer
383 bba111bc 2021-03-28 op Move point to the end of the buffer.
384 bba111bc 2021-03-28 op .It Ic forward-char
385 bba111bc 2021-03-28 op Move point one character forward.
386 bba111bc 2021-03-28 op .It Ic forward-paragraph
387 bba111bc 2021-03-28 op Move point one paragraph forward.
388 e7b982f4 2021-07-14 op .It Ic insert-current-candidate
389 e7b982f4 2021-07-14 op Copy the current selection text as minibuffer input.
390 bba111bc 2021-03-28 op .It Ic move-beginning-of-line
391 bba111bc 2021-03-28 op Move point at the beginning of the current (visual) line.
392 bba111bc 2021-03-28 op .It Ic move-end-of-line
393 bba111bc 2021-03-28 op Move point at the end of the current (visual) line.
394 bba111bc 2021-03-28 op .It Ic next-button
395 bba111bc 2021-03-28 op Move point to the next link.
396 e7b982f4 2021-07-14 op .It Ic next-completion
397 e7b982f4 2021-07-14 op Select the next completion.
398 1c412d48 2021-06-25 op .It Ic next-heading
399 1c412d48 2021-06-25 op Move point to the next heading.
400 bba111bc 2021-03-28 op .It Ic next-line
401 bba111bc 2021-03-28 op Move point to the next (visual) line, in the same column if possible.
402 bba111bc 2021-03-28 op .It Ic previous-button
403 bba111bc 2021-03-28 op Move point to the previous link.
404 e7b982f4 2021-07-14 op .It Ic previous-completion
405 e7b982f4 2021-07-14 op Select the previous completion.
406 1c412d48 2021-06-25 op .It Ic previous-heading
407 1c412d48 2021-06-25 op Move point to the previous heading.
408 bba111bc 2021-03-28 op .It Ic previous-line
409 bba111bc 2021-03-28 op Move point to the previous (visual) line.
410 bba111bc 2021-03-28 op .El
411 bba111bc 2021-03-28 op .Ss Bookmark-related commands
412 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
413 bba111bc 2021-03-28 op .It Ic bookmark-page
414 bba111bc 2021-03-28 op Add a link to the bookmark file.
415 bba111bc 2021-03-28 op It preloads the minibuffer with the current URL.
416 63875195 2021-04-01 op .It Ic list-bookmarks
417 bba111bc 2021-03-28 op Load the bookmarks page.
418 bba111bc 2021-03-28 op .El
419 bba111bc 2021-03-28 op .Ss Tab-related commands
420 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
421 bba111bc 2021-03-28 op .It Ic tab-close
422 bba111bc 2021-03-28 op Close the current tab.
423 bba111bc 2021-03-28 op .It Ic tab-close-other
424 bba111bc 2021-03-28 op Close all tabs but the current one.
425 bba111bc 2021-03-28 op .It Ic tab-move
426 bba111bc 2021-03-28 op Move the current tab after the next one, wrapping around if
427 bba111bc 2021-03-28 op needed.
428 bba111bc 2021-03-28 op .It Ic tab-move-to
429 bba111bc 2021-03-28 op Move the current tab before the previous one, wrapping around if needed.
430 bba111bc 2021-03-28 op .It Ic tab-new
431 bba111bc 2021-03-28 op Open a new tab.
432 bba111bc 2021-03-28 op .It Ic tab-next
433 bba111bc 2021-03-28 op Focus next tab, wrapping around eventually.
434 bba111bc 2021-03-28 op .It Ic tab-previous
435 bba111bc 2021-03-28 op Focus the previous tab, wrapping around eventually.
436 3360ef1b 2021-07-14 op .It Ic tab-select
437 3360ef1b 2021-07-14 op Switch to a tab using the minibuffer.
438 bba111bc 2021-03-28 op .El
439 bba111bc 2021-03-28 op .Ss Misc commands
440 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
441 bba111bc 2021-03-28 op .It Ic clear-minibuf
442 bba111bc 2021-03-28 op Clears the echo area.
443 61251035 2021-06-26 op .It Ic dec-fill-column
444 61251035 2021-06-26 op Decrements fill-column by two.
445 bba111bc 2021-03-28 op .It Ic execute-extended-command
446 bba111bc 2021-03-28 op Prompts for a command name using the minibuffer.
447 bba111bc 2021-03-28 op .It Ic kill-telescope
448 bba111bc 2021-03-28 op Quit
449 bba111bc 2021-03-28 op .Nm .
450 61251035 2021-06-26 op .It Ic inc-fill-column
451 61251035 2021-06-26 op Increments fill-column by two.
452 753c6ac7 2021-07-14 op .It Ic link-select
453 753c6ac7 2021-07-14 op Select and visit a link using the minibuffer.
454 bba111bc 2021-03-28 op .It Ic load-current-url
455 bba111bc 2021-03-28 op Prompts for an URL, the minibuffer is preloaded with the current
456 bba111bc 2021-03-28 op one.
457 bba111bc 2021-03-28 op .It Ic load-url
458 bba111bc 2021-03-28 op Prompts for an URL.
459 bba111bc 2021-03-28 op .It Ic next-page
460 bba111bc 2021-03-28 op Load the next item in the history list.
461 9f3f9f5e 2021-06-19 op .It Ic olivetti-mode
462 9f3f9f5e 2021-06-19 op Toggle olivetti mode (i.e. horizontal centering of the lines of the
463 9f3f9f5e 2021-06-19 op window.)
464 bba111bc 2021-03-28 op .It Ic previous-page
465 bba111bc 2021-03-28 op Load the previous item in the history list.
466 bba111bc 2021-03-28 op .It Ic push-button
467 60e87719 2021-07-05 op Follow the link on the current line, or toggle the visibility of the
468 60e87719 2021-07-05 op following preformatted block if called when the cursor is on the
469 60e87719 2021-07-05 op heading of the block.
470 bba111bc 2021-03-28 op .It Ic push-button-new-tab
471 bba111bc 2021-03-28 op Follow the link on the current line on a new tab.
472 bba111bc 2021-03-28 op .It Ic redraw
473 708fab48 2021-06-19 op Redraw the screen, useful if some background program messed up the
474 bba111bc 2021-03-28 op display.
475 661233ed 2021-07-14 op .It Ic reload-page
476 661233ed 2021-07-14 op Reload the current page.
477 bba111bc 2021-03-28 op .It Ic scroll-down
478 bba111bc 2021-03-28 op Scroll down by one visual page.
479 bba111bc 2021-03-28 op .It Ic scroll-line-down
480 bba111bc 2021-03-28 op Scroll down by one line.
481 bba111bc 2021-03-28 op .It Ic scroll-line-up
482 bba111bc 2021-03-28 op Scroll up by one line.
483 bba111bc 2021-03-28 op .It Ic scroll-up
484 bba111bc 2021-03-28 op Scroll up by one visual page.
485 12cf7d80 2021-07-15 op .It Ic suspend-telescope
486 12cf7d80 2021-07-15 op Suspend the current
487 12cf7d80 2021-07-15 op .Nm
488 12cf7d80 2021-07-15 op session.
489 753c6ac7 2021-07-14 op .It Ic swiper
490 753c6ac7 2021-07-14 op Jump to a line using the minibuffer.
491 edd9a650 2021-07-15 op .It Ic toc
492 edd9a650 2021-07-15 op Select and jump to a heading of the page using the minibuffer.
493 7a014cef 2021-04-01 op .It Ic toggle-help
494 7a014cef 2021-04-01 op Toggle side window with help about available keys and their associated
495 7a014cef 2021-04-01 op interactive command.
496 987d9c88 2021-07-15 op .It Ic toggle-pre-wrap
497 987d9c88 2021-07-15 op Toggle the wrapping of preformatted blocks.
498 bba111bc 2021-03-28 op .El
499 bba111bc 2021-03-28 op .Ss Minibuffer commands
500 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
501 bba111bc 2021-03-28 op .It Ic mini-abort
502 bba111bc 2021-03-28 op Abort the current minibuffer action.
503 bba111bc 2021-03-28 op .It Ic mini-complete-and-exit
504 bba111bc 2021-03-28 op Complete the current minibuffer action.
505 bba111bc 2021-03-28 op .It Ic mini-delete-backward-char
506 bba111bc 2021-03-28 op Delete the character before the point.
507 bba111bc 2021-03-28 op .It Ic mini-delete-char
508 bba111bc 2021-03-28 op Delete the character after the point.
509 bba111bc 2021-03-28 op .It Ic mini-kill-line
510 bba111bc 2021-03-28 op Delete from the point until the end of the line.
511 bba111bc 2021-03-28 op .It Ic mini-next-history-element
512 bba111bc 2021-03-28 op Load the previous history element.
513 bba111bc 2021-03-28 op .It Ic mini-previous-history-element
514 bba111bc 2021-03-28 op Load the next history element.
515 bba111bc 2021-03-28 op .El
516 7d2d15f5 2021-04-30 op .Ss Aliases
517 7d2d15f5 2021-04-30 op The following aliases are available during
518 7d2d15f5 2021-04-30 op .Ic execute-extended-command :
519 7d2d15f5 2021-04-30 op .Bl -tag -width 16m -compact
520 c82b3fd6 2021-05-12 op .It Ic tabn
521 c82b3fd6 2021-05-12 op .Ic tab-next
522 c82b3fd6 2021-05-12 op .It Ic tabnew
523 c82b3fd6 2021-05-12 op .Ic tab-new
524 c82b3fd6 2021-05-12 op .It Ic tabp
525 c82b3fd6 2021-05-12 op .Ic tab-previous
526 7d2d15f5 2021-04-30 op .It Ic q No and Ic wq
527 7d2d15f5 2021-04-30 op .Ic kill-telescope
528 74ca8ef4 2021-06-19 op .El
529 74ca8ef4 2021-06-19 op .Sh CONFIGURATION FILE
530 74ca8ef4 2021-06-19 op During the startup,
531 74ca8ef4 2021-06-19 op .Nm
532 74ca8ef4 2021-06-19 op reads the configuration file at
533 74ca8ef4 2021-06-19 op .Pa ~/.telescope/config
534 74ca8ef4 2021-06-19 op or the one given with the
535 74ca8ef4 2021-06-19 op .Fl c
536 74ca8ef4 2021-06-19 op flag.
537 74ca8ef4 2021-06-19 op .Pp
538 21404dd9 2021-07-15 op .Nm
539 21404dd9 2021-07-15 op will also load a file called
540 21404dd9 2021-07-15 op .Pa config-TERM ,
541 21404dd9 2021-07-15 op where
542 21404dd9 2021-07-15 op .Dq TERM
543 21404dd9 2021-07-15 op is the name of the terminal type
544 21404dd9 2021-07-15 op .Pq i.e. the TERM variable ,
545 21404dd9 2021-07-15 op if available.
546 21404dd9 2021-07-15 op .Pp
547 74ca8ef4 2021-06-19 op The format of the configuration file is fairly flexible.
548 74ca8ef4 2021-06-19 op The current line can be extended over multiple ones using a
549 74ca8ef4 2021-06-19 op backslash
550 74ca8ef4 2021-06-19 op .Pq Sq \e .
551 74ca8ef4 2021-06-19 op Comments can be put anywhere in the file using a hash mark
552 74ca8ef4 2021-06-19 op .Pq Sq # ,
553 74ca8ef4 2021-06-19 op and extend to the end of the current line, but backslashes can't be
554 74ca8ef4 2021-06-19 op used to extend comments over multiple lines.
555 74ca8ef4 2021-06-19 op .Pp
556 74ca8ef4 2021-06-19 op The following constructs are available:
557 74ca8ef4 2021-06-19 op .Bl -tag -width Ds
558 138421e8 2021-06-25 op .It Ic bind Ar map Ar key Ar cmd
559 138421e8 2021-06-25 op Bind
560 138421e8 2021-06-25 op .Ar key
561 138421e8 2021-06-25 op to the function
562 138421e8 2021-06-25 op .Ar cmd
563 138421e8 2021-06-25 op in the keymap
564 138421e8 2021-06-25 op .Ar map .
565 138421e8 2021-06-25 op Valid values for map are
566 138421e8 2021-06-25 op .Dq global-map
567 138421e8 2021-06-25 op .Pq i.e. when the user is viewing a page
568 138421e8 2021-06-25 op and
569 138421e8 2021-06-25 op .Dq minibuffer-map
570 138421e8 2021-06-25 op .Pq i.e. when the minibuffer has the focus.
571 138421e8 2021-06-25 op .Ar key
572 138421e8 2021-06-25 op follows the same syntax described in
573 138421e8 2021-06-25 op .Sx DEFAULT KEY BINDINGS
574 138421e8 2021-06-25 op and all the possible functions are listed in
575 138421e8 2021-06-25 op .Sx INTERACTIVE COMMANDS .
576 90d8329a 2021-06-25 op .It Ic proxy Ar proto Ic via Ar url
577 90d8329a 2021-06-25 op Use
578 90d8329a 2021-06-25 op .Ar url
579 90d8329a 2021-06-25 op as proxy for all URLs with
580 90d8329a 2021-06-25 op protocol
581 90d8329a 2021-06-25 op .Ar proto .
582 90d8329a 2021-06-25 op .Ar url
583 90d8329a 2021-06-25 op must be a Gemini URI without path, query and fragment component.
584 74ca8ef4 2021-06-19 op .It Ic set Ar opt No = Ar val
585 74ca8ef4 2021-06-19 op Set the option
586 74ca8ef4 2021-06-19 op .Ar opt
587 74ca8ef4 2021-06-19 op to the value
588 74ca8ef4 2021-06-19 op .Ar val .
589 74ca8ef4 2021-06-19 op Valid options are:
590 74ca8ef4 2021-06-19 op .Pp
591 74ca8ef4 2021-06-19 op .Bl -tag -width twelveletters -compact
592 88693f61 2021-07-15 op .It dont-wrap-pre
593 88693f61 2021-07-15 op .Pq integer
594 88693f61 2021-07-15 op If nonzero, don't wrap preformatted blocks.
595 59ae0cdc 2021-07-16 op .It emojify-link
596 59ae0cdc 2021-07-16 op .Pq integer
597 59ae0cdc 2021-07-16 op If not zero, when the text of a link starts with an emoji followed by
598 59ae0cdc 2021-07-16 op a space, use that emoji as line prefix.
599 59ae0cdc 2021-07-16 op Defaults to 1.
600 2c748a1f 2021-06-21 op .It enable-colors
601 2c748a1f 2021-06-21 op .Pq integer
602 2c748a1f 2021-06-21 op If not zero, enable colours.
603 2c748a1f 2021-06-21 op By default is 1 if
604 2c748a1f 2021-06-21 op .Ev NO_COLORS
605 2c748a1f 2021-06-21 op is not set, 0 otherwise.
606 74ca8ef4 2021-06-19 op .It fill-column
607 74ca8ef4 2021-06-19 op .Pq integer
608 74ca8ef4 2021-06-19 op If greater than zero, lines of text will be formatted in a way that
609 74ca8ef4 2021-06-19 op don't exceed the given number of columns.
610 2c362f95 2021-06-24 op By default is 80.
611 b1379f34 2021-07-05 op .It hide-pre-blocks
612 0193225e 2021-07-05 op .Pq integer
613 b1379f34 2021-07-05 op If nonzero, hide by default the body of the preformatted blocks.
614 0193225e 2021-07-05 op By default is zero.
615 b1379f34 2021-07-05 op .Ic push-button
616 b1379f34 2021-07-05 op can be used to toggle the visibility per-block.
617 144733a7 2021-07-15 op .It hide-pre-closing-line
618 144733a7 2021-07-15 op .Pq integer
619 144733a7 2021-07-15 op If nonzero, hide the closing line of preformatted blocks.
620 b1379f34 2021-07-05 op .It hide-pre-context
621 0193225e 2021-07-05 op .Pq integer
622 b1379f34 2021-07-05 op If nonzero, hide the start and end line of the preformatted blocks.
623 b1379f34 2021-07-05 op If both hide-pre-context and hide-pre-blocks are nonzero, preformatted
624 b1379f34 2021-07-05 op blocks are irremediably hidden.
625 0193225e 2021-07-05 op By default is zero.
626 74ca8ef4 2021-06-19 op .It new-tab-url
627 74ca8ef4 2021-06-19 op .Pq string
628 41a9ae40 2021-06-20 op URL for the new tab page.
629 41a9ae40 2021-06-20 op By default is
630 41a9ae40 2021-06-20 op .Dq about:new .
631 74ca8ef4 2021-06-19 op .It olivetti-mode
632 74ca8ef4 2021-06-19 op .Pq integer
633 74ca8ef4 2021-06-19 op Enable
634 74ca8ef4 2021-06-19 op .Ic olivetti-mode
635 41a9ae40 2021-06-20 op if non zero.
636 2c362f95 2021-06-24 op By default is 1.
637 74ca8ef4 2021-06-19 op .El
638 74ca8ef4 2021-06-19 op .It Ic style Ar name Ar option
639 74ca8ef4 2021-06-19 op Change the styling of the element identified by
640 74ca8ef4 2021-06-19 op .Ar name .
641 74ca8ef4 2021-06-19 op Multiple options may be specified within curly braces.
642 74ca8ef4 2021-06-19 op Valid style identifiers are:
643 74bc52e8 2021-06-25 op .Bl -tag -width 16m -compact -offset Ds
644 74bc52e8 2021-06-25 op .It line
645 74bc52e8 2021-06-25 op for the area outside the lines in the body of the page.
646 45fe2472 2021-07-14 op .It line.compl
647 45fe2472 2021-07-14 op for the completion in the minibuffer
648 45fe2472 2021-07-14 op .It line.compl.current
649 45fe2472 2021-07-14 op for the current completion
650 74ca8ef4 2021-06-19 op .It line.text
651 74bc52e8 2021-06-25 op for text lines.
652 74bc52e8 2021-06-25 op .It line.link
653 74bc52e8 2021-06-25 op for link lines.
654 74ca8ef4 2021-06-19 op .It line.title1..3
655 14feea06 2021-07-14 op for headings
656 74ca8ef4 2021-06-19 op .It line.item
657 74bc52e8 2021-06-25 op for item lines.
658 74ca8ef4 2021-06-19 op .It line.quote
659 74bc52e8 2021-06-25 op for quotes.
660 74ca8ef4 2021-06-19 op .It line.pre.start
661 74bc52e8 2021-06-25 op for the heading of a preformatted block.
662 74ca8ef4 2021-06-19 op .It line.pre
663 74bc52e8 2021-06-25 op for the content of a preformatted block.
664 74ca8ef4 2021-06-19 op .It line.pre.end
665 74bc52e8 2021-06-25 op for the closing line of a preformatted block.
666 eaf1a84b 2021-06-25 op .It minibuffer
667 eaf1a84b 2021-06-25 op for the minibuffer
668 eaf1a84b 2021-06-25 op .Dq i.e. the last line of the window
669 eaf1a84b 2021-06-25 op .It modeline
670 eaf1a84b 2021-06-25 op for the modeline
671 eaf1a84b 2021-06-25 op .Dq i.e. the info line right above the minibuffer
672 74bc52e8 2021-06-25 op .It tabline
673 74bc52e8 2021-06-25 op for the tabline.
674 74bc52e8 2021-06-25 op .It tabline.tab
675 74bc52e8 2021-06-25 op for the non-focused tabs.
676 74bc52e8 2021-06-25 op .It tabline.current
677 74bc52e8 2021-06-25 op for the focused tab.
678 7d2d15f5 2021-04-30 op .El
679 74ca8ef4 2021-06-19 op .Pp
680 74ca8ef4 2021-06-19 op Valid options are:
681 ab728b01 2021-06-22 op .Bl -tag -width Ds
682 6e8a284f 2021-06-24 op .It Ic attr Ar prefix Oo Ar line Oo Ar trail Oc Oc
683 ab728b01 2021-06-22 op Sets the text attributes.
684 ab728b01 2021-06-22 op If only one value is given,
685 ab728b01 2021-06-22 op .Ar line
686 ab728b01 2021-06-22 op and
687 ab728b01 2021-06-22 op .Ar trail
688 ab728b01 2021-06-22 op default to that; if two values are given then
689 ab728b01 2021-06-22 op .Ar trail
690 ab728b01 2021-06-22 op defaults to
691 ab728b01 2021-06-22 op .Ar prefix .
692 ab728b01 2021-06-22 op Each attribute is a comma-separated list of keywords:
693 ab728b01 2021-06-22 op .Bl -tag -width underline -compact -offset Ds
694 ab728b01 2021-06-22 op .It Ic normal
695 ab728b01 2021-06-22 op no attributes.
696 ab728b01 2021-06-22 op .It Ic standout
697 ab728b01 2021-06-22 op best highlighting mode for the terminal.
698 ab728b01 2021-06-22 op .It Ic underline
699 ab728b01 2021-06-22 op underlines the text.
700 ab728b01 2021-06-22 op .It Ic reverse
701 ab728b01 2021-06-22 op reverses background/foreground colors.
702 ab728b01 2021-06-22 op .It Ic blink
703 ab728b01 2021-06-22 op makes the text blinking.
704 ab728b01 2021-06-22 op .It Ic dim
705 ab728b01 2021-06-22 op half bright.
706 ab728b01 2021-06-22 op .It Ic bold
707 ab728b01 2021-06-22 op extra bright or bold.
708 74ca8ef4 2021-06-19 op .El
709 74bc52e8 2021-06-25 op .Pp
710 74bc52e8 2021-06-25 op Only the styles under the
711 74bc52e8 2021-06-25 op .Dq line.
712 74bc52e8 2021-06-25 op prefix accept up to three attributes.
713 74bc52e8 2021-06-25 op The other will only use the first one given.
714 6e8a284f 2021-06-24 op .It Ic bg Ar prefix Oo Ar line Oo Ar trail Oc Oc
715 ab728b01 2021-06-22 op Sets the background color.
716 ab728b01 2021-06-22 op Follows the same behaviour as
717 ab728b01 2021-06-22 op .Ic attr
718 ab728b01 2021-06-22 op regarding the optional parameters.
719 ae844a00 2021-06-25 op The colour is one of black, red, green, yellow, blue,
720 ae844a00 2021-06-25 op magenta, cyan and white; colour0 to colour255
721 ae844a00 2021-06-25 op .Pq or color0 to color255
722 ae844a00 2021-06-25 op from the 256-colour set;
723 ae844a00 2021-06-25 op default for the default colour.
724 6e8a284f 2021-06-24 op .It Ic fg Ar prefix Oo Ar line Oo Ar trail Oc Oc
725 ab728b01 2021-06-22 op Sets the foreground color.
726 ab728b01 2021-06-22 op It behaves just like
727 ab728b01 2021-06-22 op .Ic bg .
728 ab728b01 2021-06-22 op .It Ic prefix Ar prfx Op Ar cont
729 eaf1a84b 2021-06-25 op Sets the prefix for the current line type to
730 ab728b01 2021-06-22 op .Ar prfx
731 ab728b01 2021-06-22 op and
732 ab728b01 2021-06-22 op .Ar cont
733 ab728b01 2021-06-22 op as the prefix for the continuation lines
734 ab728b01 2021-06-22 op .Pq i.e. when a long line gets wrapped.
735 ab728b01 2021-06-22 op If
736 ab728b01 2021-06-22 op .Ar cont
737 ab728b01 2021-06-22 op is not given its value will be the same of
738 ab728b01 2021-06-22 op .Ar prfx .
739 74ca8ef4 2021-06-19 op .El
740 ab728b01 2021-06-22 op .El
741 bba111bc 2021-03-28 op .Sh FILES
742 bba111bc 2021-03-28 op .Bl -tag -width Ds -compact
743 bba111bc 2021-03-28 op .It Pa ~/.telescope/bookmarks.gmi
744 bba111bc 2021-03-28 op Holds the bookmarks.
745 dca97b00 2021-06-19 op .It Pa ~/.telescope/config
746 dca97b00 2021-06-19 op Default configuration file.
747 bba111bc 2021-03-28 op .It Pa ~/.telescope/known_hosts
748 bba111bc 2021-03-28 op Contains a list of host keys for all the hosts the user has visited.
749 bba111bc 2021-03-28 op See the TOFU section for more info.
750 d0fd368a 2021-07-15 op .It Pa ~/.telescope/lock
751 d0fd368a 2021-07-15 op Lock file used to prevent multiple instance of
752 d0fd368a 2021-07-15 op .Nm
753 d0fd368a 2021-07-15 op from running at the same time.
754 e9b1e094 2021-04-01 op .It Pa ~/.telescope/session
755 e9b1e094 2021-04-01 op Contains the list of opened tabs in the last session, one per line.
756 e9b1e094 2021-04-01 op Gets written on
757 e9b1e094 2021-04-01 op .Ic kill-telescope
758 e9b1e094 2021-04-01 op and loaded on startup.
759 6c04e8b6 2021-04-01 op .El
760 74ca8ef4 2021-06-19 op .Sh EXAMPLES
761 ab728b01 2021-06-22 op The following is my config file:
762 74ca8ef4 2021-06-19 op .Bd -literal -offset indent
763 74bc52e8 2021-06-25 op # enable colors regardless of $NO_COLOR
764 ab728b01 2021-06-22 op set enable-colors = 1
765 74ca8ef4 2021-06-19 op
766 74ca8ef4 2021-06-19 op style line.item {
767 6322dee3 2021-06-21 op prefix " • " " "
768 74ca8ef4 2021-06-19 op }
769 74ca8ef4 2021-06-19 op
770 74ca8ef4 2021-06-19 op style line.link {
771 6322dee3 2021-06-21 op prefix "→ " " "
772 74ca8ef4 2021-06-19 op }
773 74ca8ef4 2021-06-19 op
774 74ca8ef4 2021-06-19 op style line.quote {
775 74ca8ef4 2021-06-19 op prefix " ┃ "
776 74ca8ef4 2021-06-19 op }
777 984245ce 2021-06-23 op .Ed
778 984245ce 2021-06-23 op .Pp
779 984245ce 2021-06-23 op It's possible to browse
780 984245ce 2021-06-23 op .Dq the small web
781 984245ce 2021-06-23 op .Pq i.e. simple websites
782 3a761ed2 2021-06-25 op by using programs like the duckling-proxy by defining a proxy in
783 6e8a284f 2021-06-24 op .Pa ~/.telescope/config :
784 984245ce 2021-06-23 op .Bd -literal -offset indent
785 984245ce 2021-06-23 op proxy http via "gemini://localhost:1965"
786 984245ce 2021-06-23 op proxy https via "gemini://localhost:1965"
787 74ca8ef4 2021-06-19 op .Ed
788 19f9cf0f 2021-06-24 op .Pp
789 19f9cf0f 2021-06-24 op To load
790 19f9cf0f 2021-06-24 op .Nm
791 19f9cf0f 2021-06-24 op without any configuration use
792 19f9cf0f 2021-06-24 op .Bd -literal -offset indent
793 19f9cf0f 2021-06-24 op telescope -c /dev/null
794 19f9cf0f 2021-06-24 op .Ed
795 bba111bc 2021-03-28 op .Sh AUTHORS
796 bba111bc 2021-03-28 op .An -nosplit
797 bba111bc 2021-03-28 op The
798 bba111bc 2021-03-28 op .Nm
799 bba111bc 2021-03-28 op program was written by
800 bba111bc 2021-03-28 op .An Omar Polo Aq Mt op@omarpolo.com .