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