1 4bb6a4fa 2024-01-15 op .\" Copyright (c) 2021, 2022, 2024 Omar Polo <op@omarpolo.com>
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.
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 4a11f504 2024-02-23 op .Dd $Mdocdate: February 23 2024$
15 bba111bc 2021-03-28 op .Dt TELESCOPE 1
19 a19dd818 2021-08-03 op .Nd multi-protocol browser
24 dee3a166 2021-11-29 op .Op Fl c Ar config
27 bba111bc 2021-03-28 op .Sh DESCRIPTION
29 7d7bc744 2024-02-23 op is a browser that supports the Finger, Gemini and Gopher protocols.
31 a19dd818 2021-08-03 op features tabs, a minibuffer, interactive completions, bookmarks and
32 7d7bc744 2024-02-23 op client certificates.
34 c92e529c 2021-06-15 op The arguments are as follows:
35 dc761924 2021-07-15 op .Bl -tag -width xxxxxxxxxxxxx
36 dee3a166 2021-11-29 op .It Fl c Ar config
37 c92e529c 2021-06-15 op Specify an alternative configuration file.
39 dee3a166 2021-11-29 op .Pa ~/.config/telescope/config
41 ccc5591f 2021-07-15 op .It Fl h , Fl -help
42 d18cfb58 2022-01-06 op Display version, usage and exit.
44 ccc5591f 2021-07-15 op Configtest mode.
45 ccc5591f 2021-07-15 op Only check the configuration file for validity.
46 d0971653 2021-09-15 op .It Fl S , Fl -safe
48 d0971653 2021-09-15 op .Pq or Dq sandbox
52 d34a1873 2021-09-15 op from writing files to the disk and to acquire the lock, allowing to
53 d34a1873 2021-09-15 op run multiple instances at the same time.
55 d34a1873 2021-09-15 op still loads the session file and the custom about pages.
56 dc761924 2021-07-15 op .It Fl v , Fl -version
57 d18cfb58 2022-01-06 op Display version and exit.
59 7ee780fa 2021-07-21 op .Sh UI CONCEPTS
61 7ee780fa 2021-07-21 op interface is divided into four areas: the tabline, the body, the
62 7ee780fa 2021-07-21 op modeline and the echoarea/minibuffer.
64 7ee780fa 2021-07-21 op The tabline is always at the top of the screen and displays the tabs
65 7ee780fa 2021-07-21 op separated by a vertical line.
66 7ee780fa 2021-07-21 op When there are more tabs than the size of the window allow to display,
67 7ee780fa 2021-07-21 op the characters
71 7ee780fa 2021-07-21 op are shown at the start/end of the tabline to indicate that there are
72 7ee780fa 2021-07-21 op more tabs in that direction.
74 7ee780fa 2021-07-21 op The body occupies the majority of the visible area.
75 7ee780fa 2021-07-21 op It contains the current page and optionally a side window.
77 7ee780fa 2021-07-21 op The modeline is the second to last row of the screen.
78 7ee780fa 2021-07-21 op It shows some information about the page: a spinner when the page is
79 a3e4d56b 2024-05-25 thomas.ad loading, the trust level, whether a client certificate is in use, a
80 a3e4d56b 2024-05-25 thomas.ad warning indicator for faulty Gemini servers, document type, the
81 a3e4d56b 2024-05-25 thomas.ad scroll offset and the URL.
82 4c9aaf27 2024-02-06 op When a client certificate is in use, a
84 4c9aaf27 2024-02-06 op character is showed.
85 a3e4d56b 2024-05-25 thomas.ad Some Gemini servers have buggy TLS handling but some information might
86 a3e4d56b 2024-05-25 thomas.ad still be available.
87 a3e4d56b 2024-05-25 thomas.ad This information could be truncated.
88 a3e4d56b 2024-05-25 thomas.ad In those circumstances, a
90 a3e4d56b 2024-05-25 thomas.ad character is shown.
92 7ee780fa 2021-07-21 op The echoarea is usually the last line of the screen.
93 7ee780fa 2021-07-21 op Messages are often showed there, and link addresses too.
94 7ee780fa 2021-07-21 op The echoarea is also used to obtain input from the user.
95 7ee780fa 2021-07-21 op When commands like
98 7ee780fa 2021-07-21 op .Ic link-select
99 9eb0c887 2021-08-03 op are invoked, the minibuffer area grows to show possible completions.
102 7ee780fa 2021-07-21 op aims to use the
103 7ee780fa 2021-07-21 op .Dq Trust, but Verify Pq where appropriate
106 7ee780fa 2021-07-21 op .Pq Dq Trust On First Use .
107 bba111bc 2021-03-28 op The idea is to define three level of verification for a certificate:
108 bba111bc 2021-03-28 op .Bl -tag -width 12m
109 bba111bc 2021-03-28 op .It untrusted
111 7d7bc744 2024-02-23 op the server fingerprint does not match the stored value.
114 7ee780fa 2021-07-21 op the server fingerprint matches the store one.
117 7ee780fa 2021-07-21 op the fingerprint matches and has been verified out-of-band.
120 7ee780fa 2021-07-21 op The trust level of the page is indicated in the modeline with the
121 7ee780fa 2021-07-21 op indicated character.
123 bba111bc 2021-03-28 op Most of the time the
125 bba111bc 2021-03-28 op level is enough, but where is appropriate users should be able to
126 bba111bc 2021-03-28 op verify out-of-band the certificate.
128 bba111bc 2021-03-28 op At the moment, there is no built-in support for an out-of-band
129 bba111bc 2021-03-28 op verification though.
130 f1279523 2021-08-13 op .Sh SUPPORTED PROTOCOLS
131 f1279523 2021-08-13 op The following protocols are supported:
132 f1279523 2021-08-13 op .Bl -tag -width gemini://
134 f1279523 2021-08-13 op About pages are
136 f1279523 2021-08-13 op internal page.
137 f1279523 2021-08-13 op See about:about for a list of all these pages.
139 f1279523 2021-08-13 op File types know to
141 f1279523 2021-08-13 op such as .gmi, .gemini, .txt, .md, .markdown, .diff or .patch, can be
142 f1279523 2021-08-13 op viewed inside the application.
143 f1279523 2021-08-13 op Types of local files are detected solely based on the file extension.
144 f1279523 2021-08-13 op On some systems, such as
146 f1279523 2021-08-13 op only files inside special directories
147 f1279523 2021-08-13 op .Pq like Pa /tmp No or Pa ~/Downloads
148 f1279523 2021-08-13 op are available.
149 f1279523 2021-08-13 op .It finger://
150 f1279523 2021-08-13 op Finger URLs are interpreted as follows:
151 4a52e6fe 2021-08-03 op .Bl -bullet -compact
153 4a52e6fe 2021-08-03 op the host is determined by the host name portion of the URL
155 4a52e6fe 2021-08-03 op if the user portion of the URL is provided, it's interpreted as the
156 4a52e6fe 2021-08-03 op user to finger, otherwise the path component will be used
159 4a52e6fe 2021-08-03 op .Lk finger://user@hostname
161 4a52e6fe 2021-08-03 op .Lk finger://hostname/user
162 f1279523 2021-08-13 op are treated as the same URL.
163 f1279523 2021-08-13 op .It gemini://
164 7d7bc744 2024-02-23 op Gemini is fully supported.
165 f1279523 2021-08-13 op .It gopher://
166 4a52e6fe 2021-08-03 op Gopher support is limited to items type 0, 1 and 7.
167 7d7bc744 2024-02-23 op All text is assumed to be encoded in UTF-8 (superset of ASCII).
170 eb6e7b8a 2021-08-16 op User-entered URLs, given as argument on the command line or entered
172 eb6e7b8a 2021-08-16 op .Ic load-url ,
173 2815e3a0 2024-09-01 op by default are interpreted with a simple heuristic:
174 eb6e7b8a 2021-08-16 op .Bl -bullet -compact
176 eb6e7b8a 2021-08-16 op if it's a proper absolute URL then use it as-is,
178 eb6e7b8a 2021-08-16 op if it starts with
182 eb6e7b8a 2021-08-16 op assume it's a file:// URL,
184 cfcbc23c 2024-01-16 op otherwise treat it like a hostname with protocol
185 cfcbc23c 2024-01-16 op .Ic default-protocol
186 cfcbc23c 2024-01-16 op .Pq gemini by default .
190 449ea6fe 2024-01-16 op .Ic load-url-use-heuristic
191 449ea6fe 2024-01-16 op can be used to disable the use of heuristics.
192 c7c89626 2024-06-13 thomas.ad .Sh MIME-TYPE HANDLING
193 c7c89626 2024-06-13 thomas.ad Beyond the supported protocols which
195 c7c89626 2024-06-13 thomas.ad already understands, mime-types which
197 c7c89626 2024-06-13 thomas.ad cannot display can be opened using a
198 c7c89626 2024-06-13 thomas.ad .Pa mailcap
200 c7c89626 2024-06-13 thomas.ad By default,
202 c7c89626 2024-06-13 thomas.ad will look for one of the following mailcap files in the following order:
204 c7c89626 2024-06-13 thomas.ad .Bl -tag -width Ds -compact
205 c7c89626 2024-06-13 thomas.ad .It Pa ~/.mailcap
206 c7c89626 2024-06-13 thomas.ad .It Pa /etc/mailcap
207 c7c89626 2024-06-13 thomas.ad .It Pa /usr/etc/mailcap
208 c7c89626 2024-06-13 thomas.ad .It Pa /usr/local/etc/mailcap
211 c7c89626 2024-06-13 thomas.ad A default mailcap entry is always defined by
213 c7c89626 2024-06-13 thomas.ad which uses
214 c7c89626 2024-06-13 thomas.ad .Xr xdg-open 1
215 c7c89626 2024-06-13 thomas.ad as a fallback for mime-types not defined through a mailcap file, or if no
216 c7c89626 2024-06-13 thomas.ad mailcap file was found.
218 c7c89626 2024-06-13 thomas.ad Refer to RFC 1524 for more information about the structure and format of this
220 c7c89626 2024-06-13 thomas.ad Note that
222 c7c89626 2024-06-13 thomas.ad currently only supports a small subset of this standard, honouring only the
223 c7c89626 2024-06-13 thomas.ad .Pa needsterminal
225 c7c89626 2024-06-13 thomas.ad .Pa copiousouput
226 c7c89626 2024-06-13 thomas.ad flags.
227 a74a9f2c 2021-10-08 op .Sh CONFIGURATION FILE
228 a74a9f2c 2021-10-08 op During the startup,
230 a74a9f2c 2021-10-08 op reads the configuration file at
231 a74a9f2c 2021-10-08 op .Pa ~/.config/telescope/config
233 a74a9f2c 2021-10-08 op .Pa ~/.telescope/config .
235 a74a9f2c 2021-10-08 op It's possible to load a custom configuration file using the
240 a74a9f2c 2021-10-08 op will also load a file called
241 a74a9f2c 2021-10-08 op .Pa config-TERM ,
244 a74a9f2c 2021-10-08 op is the name of the terminal type
245 a74a9f2c 2021-10-08 op .Pq i.e. the TERM environment variable ,
246 a74a9f2c 2021-10-08 op if it exists.
248 a74a9f2c 2021-10-08 op The format of the configuration file is fairly flexible.
249 a74a9f2c 2021-10-08 op The current line can be extended over multiple ones using a
252 a74a9f2c 2021-10-08 op Comments can be put anywhere in the file using a hash mark
254 a74a9f2c 2021-10-08 op and extend to the end of the current line, but backslashes can't be
255 a74a9f2c 2021-10-08 op used to extend comments over multiple lines.
257 a74a9f2c 2021-10-08 op The following constructs are available:
258 a74a9f2c 2021-10-08 op .Bl -tag -width Ds
259 a74a9f2c 2021-10-08 op .It Ic bind Ar map Ar key Ar cmd
262 a74a9f2c 2021-10-08 op to the function
264 a74a9f2c 2021-10-08 op in the keymap
266 a74a9f2c 2021-10-08 op Valid values for map are
267 a74a9f2c 2021-10-08 op .Dq global-map
268 a74a9f2c 2021-10-08 op .Pq i.e. when the user is viewing a page
270 a74a9f2c 2021-10-08 op .Dq minibuffer-map
271 a74a9f2c 2021-10-08 op .Pq i.e. when the minibuffer has the focus.
273 a74a9f2c 2021-10-08 op follows the same syntax described in
274 a74a9f2c 2021-10-08 op .Sx DEFAULT KEY BINDINGS
275 a74a9f2c 2021-10-08 op and all the possible functions are listed in
276 a74a9f2c 2021-10-08 op .Sx INTERACTIVE COMMANDS .
277 a74a9f2c 2021-10-08 op .It Ic proxy Ar proto Ic via Ar url
280 a74a9f2c 2021-10-08 op as proxy for all URLs with
284 a74a9f2c 2021-10-08 op must be a Gemini URI without path, query and fragment component.
285 a74a9f2c 2021-10-08 op .It Ic set Ar opt No = Ar val
286 a74a9f2c 2021-10-08 op Set the option
290 a74a9f2c 2021-10-08 op Valid options are:
292 a74a9f2c 2021-10-08 op .Bl -tag -width twelveletters -compact
293 b8044517 2022-02-26 op .It Ic autosave
295 a74a9f2c 2021-10-08 op If greater than zero, save the session after the specified amount of
296 7d7bc744 2024-02-23 op seconds after some events happened
297 a74a9f2c 2021-10-08 op .Pq new or closed tabs, visited a link ...
298 a74a9f2c 2021-10-08 op Defaults to 20.
299 cfcbc23c 2024-01-16 op .It Ic default-protocol
301 cfcbc23c 2024-01-16 op The default protocol assumed for the
306 45ac216a 2024-05-30 op .It Ic default-search-engine
308 45ac216a 2024-05-30 op URL of the preferred search engine, used by the
311 45ac216a 2024-05-30 op If it's a Gemini URI, the user query will be appended as query,
312 45ac216a 2024-05-30 op replacing it if present.
313 45ac216a 2024-05-30 op If it's a Gopher URI, the user query will be sent as gopher search
315 45ac216a 2024-05-30 op No other URI scheme are allowed.
316 b8044517 2022-02-26 op .It Ic dont-wrap-pre
318 2513365f 2024-01-16 op If true, don't wrap preformatted blocks.
319 2513365f 2024-01-16 op Defaults to false.
320 b8044517 2022-02-26 op .It Ic download-path
322 a74a9f2c 2021-10-08 op The default download path.
325 b8044517 2022-02-26 op .It Ic emojify-link
327 2513365f 2024-01-16 op If true, when the text of a link starts with an emoji followed by a
328 2513365f 2024-01-16 op space, use that emoji as line prefix.
329 2513365f 2024-01-16 op Defaults to true.
330 b8044517 2022-02-26 op .It Ic enable-colors
332 2513365f 2024-01-16 op If true, enable colours.
333 2513365f 2024-01-16 op Defaults to false if
334 a74a9f2c 2021-10-08 op .Ev NO_COLORS
335 2513365f 2024-01-16 op is set, true otherwise.
336 b8044517 2022-02-26 op .It Ic fill-column
338 a74a9f2c 2021-10-08 op If greater than zero, lines of text will be formatted in a way that
339 a74a9f2c 2021-10-08 op don't exceed the given number of columns.
340 a74a9f2c 2021-10-08 op Defaults to 80.
341 b8044517 2022-02-26 op .It Ic fringe-ignore-offset
343 2513365f 2024-01-16 op If true, the fringe doesn't obey to
344 393dc10e 2022-01-10 op .Ic olivetti-mode .
345 2513365f 2024-01-16 op Defaults to false.
346 b8044517 2022-02-26 op .It Ic hide-pre-blocks
348 2513365f 2024-01-16 op If true, hide by default the body of the preformatted blocks.
349 2513365f 2024-01-16 op Defaults to false.
350 a74a9f2c 2021-10-08 op .Ic push-button
351 a74a9f2c 2021-10-08 op can be used to toggle the visibility per-block.
352 b8044517 2022-02-26 op .It Ic hide-pre-closing-line
354 2513365f 2024-01-16 op If true, hide the closing line of preformatted blocks.
355 2513365f 2024-01-16 op Defaults to false.
356 b8044517 2022-02-26 op .It Ic hide-pre-context
358 2513365f 2024-01-16 op If true, hide the start and end line of the preformatted blocks.
360 7d7bc744 2024-02-23 op .Ic hide-pre-context
362 7d7bc744 2024-02-23 op .Ic hide-pre-blocks
363 7d7bc744 2024-02-23 op are true, preformatted blocks are irremediably hidden.
364 2513365f 2024-01-16 op Defaults to false.
365 b8044517 2022-02-26 op .It Ic new-tab-url
367 a74a9f2c 2021-10-08 op URL for the new tab page.
369 a74a9f2c 2021-10-08 op .Dq about:new .
370 4bb6a4fa 2024-01-15 op .It Ic load-url-use-heuristic
372 2815e3a0 2024-09-01 op If false, don't use heuristics to resolve the URLs.
373 449ea6fe 2024-01-16 op Non-absolute URLs given as command line argument will be resolved as
374 449ea6fe 2024-01-16 op file system paths,
376 449ea6fe 2024-01-16 op will resolve as relative to the current URL.
377 2513365f 2024-01-16 op Defaults to true.
378 b8044517 2022-02-26 op .It Ic max-killed-tabs
380 4e5935f4 2022-01-05 op The maximum number of closed tabs to keep track of, defaults to 10.
381 4e5935f4 2022-01-05 op Must be a positive number; if zero, don't save closed tabs at all.
382 b8044517 2022-02-26 op .It Ic olivetti-mode
384 2513365f 2024-01-16 op If true, enable
385 7d7bc744 2024-02-23 op .Ic olivetti-mode .
386 2513365f 2024-01-16 op Defaults to true.
387 b8044517 2022-02-26 op .It Ic tab-bar-show
389 a74a9f2c 2021-10-08 op If tab-bar-show is -1 hide the tab bar permanently, if 0 show it
390 a74a9f2c 2021-10-08 op unconditionally.
391 7d7bc744 2024-02-23 op If 1, show the bar only when there is more than one tab.
392 fff512aa 2022-01-04 op Defaults to 1.
393 b8044517 2022-02-26 op .It Ic update-title
395 2513365f 2024-01-16 op If true, set the terminal title to the page title.
396 2513365f 2024-01-16 op Defaults to true.
398 a74a9f2c 2021-10-08 op .It Ic style Ar name Ar option
399 a74a9f2c 2021-10-08 op Change the styling of the element identified by
401 a74a9f2c 2021-10-08 op Multiple options may be specified within curly braces.
402 a74a9f2c 2021-10-08 op Valid style identifiers are:
403 399bd9a0 2021-11-05 op .Bl -tag -width line.download.ongoing -compact -offset Ds
405 a74a9f2c 2021-10-08 op the area outside the lines in the body of the page.
406 a74a9f2c 2021-10-08 op .It line.compl
407 a74a9f2c 2021-10-08 op the completions.
408 a74a9f2c 2021-10-08 op .It line.compl.current
409 a74a9f2c 2021-10-08 op the current completion.
410 a74a9f2c 2021-10-08 op .It line.help
411 a74a9f2c 2021-10-08 op text in the *Help* buffer.
412 399bd9a0 2021-11-05 op .It line.download.ongoing
413 399bd9a0 2021-11-05 op an ongoing download
414 399bd9a0 2021-11-05 op .It line.download.done
415 399bd9a0 2021-11-05 op a completed download
416 399bd9a0 2021-11-05 op .It line.download.info
417 399bd9a0 2021-11-05 op informational text in the *Downloads* buffer.
418 d3b39b65 2022-01-10 op .It line.fringe
420 d3b39b65 2022-01-10 op lines draw after the end of a buffer.
421 a74a9f2c 2021-10-08 op .It line.text
423 a74a9f2c 2021-10-08 op .It line.link
425 a74a9f2c 2021-10-08 op .It line.title1..3
427 a74a9f2c 2021-10-08 op .It line.item
429 a74a9f2c 2021-10-08 op .It line.quote
431 a74a9f2c 2021-10-08 op .It line.pre.start
432 a74a9f2c 2021-10-08 op the heading of a preformatted block.
434 a74a9f2c 2021-10-08 op the content of a preformatted block.
435 a74a9f2c 2021-10-08 op .It line.pre.end
436 a74a9f2c 2021-10-08 op the closing line of a preformatted block.
438 399bd9a0 2021-11-05 op the download pane
439 a74a9f2c 2021-10-08 op .It minibuffer
440 a74a9f2c 2021-10-08 op the minibuffer.
442 a74a9f2c 2021-10-08 op the modeline.
445 a74a9f2c 2021-10-08 op .It tabline.tab
446 a74a9f2c 2021-10-08 op the non-focused tabs.
447 a74a9f2c 2021-10-08 op .It tabline.current
448 a74a9f2c 2021-10-08 op the focused tab.
451 a74a9f2c 2021-10-08 op Valid options are:
452 a74a9f2c 2021-10-08 op .Bl -tag -width Ds
453 a74a9f2c 2021-10-08 op .It Ic attr Ar prefix Oo Ar line Oo Ar trail Oc Oc
454 a74a9f2c 2021-10-08 op Sets the text attributes.
455 a74a9f2c 2021-10-08 op If only one value is given,
459 a74a9f2c 2021-10-08 op default to that; if two values are given then
463 a74a9f2c 2021-10-08 op Each attribute is a comma-separated list of keywords:
464 a74a9f2c 2021-10-08 op .Bl -tag -width underline -compact -offset Ds
465 a74a9f2c 2021-10-08 op .It Ic normal
466 a74a9f2c 2021-10-08 op no attributes.
467 a74a9f2c 2021-10-08 op .It Ic standout
468 a74a9f2c 2021-10-08 op best highlighting mode for the terminal.
469 a74a9f2c 2021-10-08 op .It Ic underline
470 a74a9f2c 2021-10-08 op underlines the text.
471 a74a9f2c 2021-10-08 op .It Ic reverse
472 a74a9f2c 2021-10-08 op reverses background/foreground colors.
474 a74a9f2c 2021-10-08 op makes the text blinking.
478 a74a9f2c 2021-10-08 op extra bright or bold.
481 a74a9f2c 2021-10-08 op Only the style identifiers with the
483 a74a9f2c 2021-10-08 op prefix accept up to three attributes.
484 a74a9f2c 2021-10-08 op The other will only use the first one given.
485 a74a9f2c 2021-10-08 op .It Ic bg Ar prefix Oo Ar line Oo Ar trail Oc Oc
486 a74a9f2c 2021-10-08 op Sets the background color.
487 a74a9f2c 2021-10-08 op Follows the same behaviour as
489 a74a9f2c 2021-10-08 op regarding the optional parameters.
490 a74a9f2c 2021-10-08 op The colour is one of black, red, green, yellow, blue,
491 a74a9f2c 2021-10-08 op magenta, cyan and white; colour0 to colour255
492 a74a9f2c 2021-10-08 op .Pq or color0 to color255
493 a74a9f2c 2021-10-08 op from the 256-colour set;
494 a74a9f2c 2021-10-08 op default for the default colour.
495 a74a9f2c 2021-10-08 op .It Ic fg Ar prefix Oo Ar line Oo Ar trail Oc Oc
496 a74a9f2c 2021-10-08 op Sets the foreground color.
497 a74a9f2c 2021-10-08 op It behaves just like
499 a74a9f2c 2021-10-08 op .It Ic prefix Ar prfx Op Ar cont
500 a74a9f2c 2021-10-08 op Sets the prefix for the current line type to
504 a74a9f2c 2021-10-08 op as the prefix for the continuation lines
505 a74a9f2c 2021-10-08 op .Pq i.e. when a long line gets wrapped.
508 a74a9f2c 2021-10-08 op is not given its value will be the same of
512 bba111bc 2021-03-28 op .Sh DEFAULT KEY BINDINGS
513 bba111bc 2021-03-28 op The default key bindings are very similar to GNU Emacs, but care has
514 bba111bc 2021-03-28 op been taken to include also bindings familiar for
519 bba111bc 2021-03-28 op In the following examples, C-x means Control-x, M-x means Meta-x,
520 bba111bc 2021-03-28 op where the Meta key may be either a special key on the keyboard or the
521 bba111bc 2021-03-28 op ALT key; otherwise ESC followed by the key X works as well, and C-M-x
522 bba111bc 2021-03-28 op means to press the key X together with both Control and Meta.
524 bba111bc 2021-03-28 op Keys are usually a single character, like
528 bba111bc 2021-03-28 op but some special keys are accepted as well.
530 bba111bc 2021-03-28 op .Bl -tag -width 16m -offset indent -compact
540 bba111bc 2021-03-28 op Previous page/Page up
542 bba111bc 2021-03-28 op Next page/Page down
547 bba111bc 2021-03-28 op .It <f0> thru <f63>
548 bba111bc 2021-03-28 op Function keys
549 bba111bc 2021-03-28 op .It del or backspace
553 bba111bc 2021-03-28 op .It space or spc
555 bba111bc 2021-03-28 op .It enter or ret
560 9eb0c887 2021-08-03 op Depends on the configuration of the terminal emulator; usually shift
563 bba111bc 2021-03-28 op .Ss GNU Emacs-like keys
564 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
566 7dbaef94 2021-04-22 op previous-line
572 7dbaef94 2021-04-22 op backward-char
574 7dbaef94 2021-04-22 op backward-paragraph
576 7dbaef94 2021-04-22 op forward-paragraph
578 7dbaef94 2021-04-22 op move-beginning-of-line
580 7dbaef94 2021-04-22 op move-end-of-line
581 bba111bc 2021-03-28 op .It M-v, M-space
583 bba111bc 2021-03-28 op .It C-v, space
586 7dbaef94 2021-04-22 op beginning-of-buffer
588 7dbaef94 2021-04-22 op end-of-buffer
590 7dbaef94 2021-04-22 op kill-telescope
594 7dbaef94 2021-04-22 op clear-minibuf
596 7dbaef94 2021-04-22 op execute-extended-command
598 61251035 2021-06-26 op dec-fill-column
600 61251035 2021-06-26 op inc-fill-column
602 1c412d48 2021-06-25 op previous-heading
608 f2ab2540 2021-07-14 op load-current-url
612 7dbaef94 2021-04-22 op load-current-url
618 7dbaef94 2021-04-22 op tab-close-other
630 7dbaef94 2021-04-22 op previous-page
634 7dbaef94 2021-04-22 op bookmark-page
635 bba111bc 2021-03-28 op .It <f7> <f7>
636 7dbaef94 2021-04-22 op list-bookmarks
638 12cf7d80 2021-07-15 op suspend-telescope
640 bba111bc 2021-03-28 op .Ss Xr vi 1 Ns -like keys
641 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
643 7dbaef94 2021-04-22 op previous-line
649 7dbaef94 2021-04-22 op backward-char
651 7dbaef94 2021-04-22 op backward-paragraph
653 7dbaef94 2021-04-22 op forward-paragraph
655 7dbaef94 2021-04-22 op move-beginning-of-line
657 7dbaef94 2021-04-22 op move-end-of-line
659 7dbaef94 2021-04-22 op scroll-line-up
661 7dbaef94 2021-04-22 op scroll-line-down
663 7dbaef94 2021-04-22 op beginning-of-buffer
665 7dbaef94 2021-04-22 op end-of-buffer
685 7dbaef94 2021-04-22 op previous-page
689 4e5935f4 2022-01-05 op tab-undo-close
691 7dbaef94 2021-04-22 op kill-telescope
693 7dbaef94 2021-04-22 op clear-minibuf
695 7dbaef94 2021-04-22 op execute-extended-command
697 bba111bc 2021-03-28 op .Ss CUA-like keys
698 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
700 7dbaef94 2021-04-22 op previous-line
706 7dbaef94 2021-04-22 op backward-char
708 12cf7d80 2021-07-15 op move-beginning-of-line
710 12cf7d80 2021-07-15 op move-end-of-line
719 3c3af0fd 2021-07-08 op .It M-<prior>
724 135e1a52 2022-01-02 op previous-page
726 7dbaef94 2021-04-22 op previous-page
727 bba111bc 2021-03-28 op .It M-<right>
734 bba111bc 2021-03-28 op .Ss Neither Emacs nor vi specific
735 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
741 7dbaef94 2021-04-22 op push-button-new-tab
743 7dbaef94 2021-04-22 op previous-button
745 8dc60352 2021-06-15 op previous-button
763 e95a7248 2022-02-08 op reply-last-input
767 bba111bc 2021-03-28 op .Ss Minibuffer-specific keys
768 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
770 7dbaef94 2021-04-22 op mini-complete-and-exit
776 7dbaef94 2021-04-22 op mini-delete-char
778 7dbaef94 2021-04-22 op mini-delete-backward-char
779 bba111bc 2021-03-28 op .It backspace
780 7dbaef94 2021-04-22 op mini-delete-backward-char
782 7dbaef94 2021-04-22 op mini-delete-backward-char
784 448632c7 2024-06-07 op mini-edit-external
786 7dbaef94 2021-04-22 op backward-char
790 7dbaef94 2021-04-22 op backward-char
794 7dbaef94 2021-04-22 op move-end-of-line
796 7dbaef94 2021-04-22 op move-beginning-of-line
798 7dbaef94 2021-04-22 op move-end-of-line
800 7dbaef94 2021-04-22 op move-beginning-of-line
802 7dbaef94 2021-04-22 op mini-kill-line
804 067b7ffd 2022-04-15 op mini-kill-whole-line
806 7dbaef94 2021-04-22 op mini-previous-history-element
808 7dbaef94 2021-04-22 op mini-next-history-element
810 e7b982f4 2021-07-14 op previous-completion
812 dffb2592 2021-07-14 op next-completion
814 dffb2592 2021-07-14 op previous-completion
816 e7b982f4 2021-07-14 op next-completion
818 e7b982f4 2021-07-14 op insert-current-candidate
820 7ee780fa 2021-07-21 op mini-goto-beginning
822 7ee780fa 2021-07-21 op mini-goto-end
824 bba111bc 2021-03-28 op .Sh INTERACTIVE COMMANDS
825 bba111bc 2021-03-28 op Follows the documentation for the interactive commands.
826 bba111bc 2021-03-28 op These commands can be bound to a key or executed with
827 bba111bc 2021-03-28 op .Ic execute-extended-command .
828 bba111bc 2021-03-28 op .Ss Movement commands
829 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
830 bba111bc 2021-03-28 op .It Ic backward-char
831 bba111bc 2021-03-28 op Move point one character backward.
832 bba111bc 2021-03-28 op .It Ic backward-paragraph
833 bba111bc 2021-03-28 op Move point one paragraph backward.
834 bba111bc 2021-03-28 op .It Ic beginning-of-buffer
835 bba111bc 2021-03-28 op Move point to the beginning of the buffer.
836 bba111bc 2021-03-28 op .It Ic end-of-buffer
837 bba111bc 2021-03-28 op Move point to the end of the buffer.
838 bba111bc 2021-03-28 op .It Ic forward-char
839 bba111bc 2021-03-28 op Move point one character forward.
840 bba111bc 2021-03-28 op .It Ic forward-paragraph
841 bba111bc 2021-03-28 op Move point one paragraph forward.
842 e7b982f4 2021-07-14 op .It Ic insert-current-candidate
843 e7b982f4 2021-07-14 op Copy the current selection text as minibuffer input.
844 bba111bc 2021-03-28 op .It Ic move-beginning-of-line
845 bba111bc 2021-03-28 op Move point at the beginning of the current (visual) line.
846 bba111bc 2021-03-28 op .It Ic move-end-of-line
847 bba111bc 2021-03-28 op Move point at the end of the current (visual) line.
848 bba111bc 2021-03-28 op .It Ic next-button
849 bba111bc 2021-03-28 op Move point to the next link.
850 e7b982f4 2021-07-14 op .It Ic next-completion
851 e7b982f4 2021-07-14 op Select the next completion.
852 1c412d48 2021-06-25 op .It Ic next-heading
853 1c412d48 2021-06-25 op Move point to the next heading.
854 bba111bc 2021-03-28 op .It Ic next-line
855 bba111bc 2021-03-28 op Move point to the next (visual) line, in the same column if possible.
856 bba111bc 2021-03-28 op .It Ic previous-button
857 bba111bc 2021-03-28 op Move point to the previous link.
858 e7b982f4 2021-07-14 op .It Ic previous-completion
859 e7b982f4 2021-07-14 op Select the previous completion.
860 1c412d48 2021-06-25 op .It Ic previous-heading
861 1c412d48 2021-06-25 op Move point to the previous heading.
862 bba111bc 2021-03-28 op .It Ic previous-line
863 bba111bc 2021-03-28 op Move point to the previous (visual) line.
865 bba111bc 2021-03-28 op .Ss Bookmark-related commands
866 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
867 bba111bc 2021-03-28 op .It Ic bookmark-page
868 b3be07ea 2021-07-18 op Save a page in the bookmark file.
869 bba111bc 2021-03-28 op It preloads the minibuffer with the current URL.
870 63875195 2021-04-01 op .It Ic list-bookmarks
871 bba111bc 2021-03-28 op Load the bookmarks page.
873 c0be9207 2024-02-06 op .Ss Client certificate-related commands
874 c0be9207 2024-02-06 op .Bl -tag -width execute-extended-command -compact
875 c0be9207 2024-02-06 op .It Ic client-certificate-info
876 c0be9207 2024-02-06 op Show the active client certificate.
877 c0be9207 2024-02-06 op .It Ic unload-certificate
878 06d1fa32 2024-02-08 op Forget the certificate on this page.
879 c0be9207 2024-02-06 op .It Ic use-certificate
880 c0be9207 2024-02-06 op Use a certificate for the current page.
882 bba111bc 2021-03-28 op .Ss Tab-related commands
883 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
884 bba111bc 2021-03-28 op .It Ic tab-close
885 bba111bc 2021-03-28 op Close the current tab.
886 bba111bc 2021-03-28 op .It Ic tab-close-other
887 bba111bc 2021-03-28 op Close all tabs but the current one.
888 bba111bc 2021-03-28 op .It Ic tab-move
889 bba111bc 2021-03-28 op Move the current tab after the next one, wrapping around if
891 bba111bc 2021-03-28 op .It Ic tab-move-to
892 bba111bc 2021-03-28 op Move the current tab before the previous one, wrapping around if needed.
893 bba111bc 2021-03-28 op .It Ic tab-new
894 bba111bc 2021-03-28 op Open a new tab.
895 bba111bc 2021-03-28 op .It Ic tab-next
896 bba111bc 2021-03-28 op Focus next tab, wrapping around eventually.
897 bba111bc 2021-03-28 op .It Ic tab-previous
898 bba111bc 2021-03-28 op Focus the previous tab, wrapping around eventually.
899 3360ef1b 2021-07-14 op .It Ic tab-select
900 3360ef1b 2021-07-14 op Switch to a tab using the minibuffer.
901 4e5935f4 2022-01-05 op .It Ic tab-undo-close
902 4e5935f4 2022-01-05 op Re-open the most recently closed tab, if any.
904 bba111bc 2021-03-28 op .Ss Misc commands
905 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
906 1495fbb2 2022-01-12 op .It Ic cache-info
907 1495fbb2 2022-01-12 op Show cache stats.
908 bba111bc 2021-03-28 op .It Ic clear-minibuf
909 b3be07ea 2021-07-18 op Clear the echo area.
910 61251035 2021-06-26 op .It Ic dec-fill-column
911 b3be07ea 2021-07-18 op Decrement fill-column by two.
912 bba111bc 2021-03-28 op .It Ic execute-extended-command
913 b3be07ea 2021-07-18 op Execute an internal command.
915 a36bb43a 2024-01-15 op Go to the home directory.
916 a36bb43a 2024-01-15 op The home directory is assumed to be the first path component in the
917 a36bb43a 2024-01-15 op .Sy ~username
919 a36bb43a 2024-01-15 op If not found, loads the root directory.
920 bba111bc 2021-03-28 op .It Ic kill-telescope
923 61251035 2021-06-26 op .It Ic inc-fill-column
924 b3be07ea 2021-07-18 op Increment fill-column by two.
925 753c6ac7 2021-07-14 op .It Ic link-select
926 753c6ac7 2021-07-14 op Select and visit a link using the minibuffer.
927 bba111bc 2021-03-28 op .It Ic load-current-url
928 b3be07ea 2021-07-18 op Edit the current URL.
929 bba111bc 2021-03-28 op .It Ic load-url
930 b3be07ea 2021-07-18 op Prompt for an URL.
931 4bb6a4fa 2024-01-15 op Use the same heuristic as the URLs given as a command-line argument,
933 4bb6a4fa 2024-01-15 op .Ic load-url-use-heuristic
934 4bb6a4fa 2024-01-15 op option is unsed, in which case the URL is resolved using the current
936 bba111bc 2021-03-28 op .It Ic next-page
937 b3be07ea 2021-07-18 op Go forward in the page history.
938 9f3f9f5e 2021-06-19 op .It Ic olivetti-mode
939 9f3f9f5e 2021-06-19 op Toggle olivetti mode (i.e. horizontal centering of the lines of the
941 9a7d62cb 2021-07-21 op .It Ic other-window
942 9a7d62cb 2021-07-21 op Select the other window.
943 bba111bc 2021-03-28 op .It Ic previous-page
944 b3be07ea 2021-07-18 op Go backward in the page history.
945 bba111bc 2021-03-28 op .It Ic push-button
946 b3be07ea 2021-07-18 op Follow link at point, or toggle the visibility of the following
947 b3be07ea 2021-07-18 op preformatted block if called when the cursor is on the heading of the block.
948 bba111bc 2021-03-28 op .It Ic push-button-new-tab
949 b3be07ea 2021-07-18 op Follow link at point in a new tab.
950 bba111bc 2021-03-28 op .It Ic redraw
951 708fab48 2021-06-19 op Redraw the screen, useful if some background program messed up the
953 661233ed 2021-07-14 op .It Ic reload-page
954 661233ed 2021-07-14 op Reload the current page.
955 e95a7248 2022-02-08 op .It Ic reply-last-input
956 e95a7248 2022-02-08 op Reply the last input request.
958 a36bb43a 2024-01-15 op Go to the root directory.
959 fd6c540b 2024-02-12 op .It Ic search
960 fd6c540b 2024-02-12 op Search using the preferred search engine.
961 bba111bc 2021-03-28 op .It Ic scroll-down
962 bba111bc 2021-03-28 op Scroll down by one visual page.
963 bba111bc 2021-03-28 op .It Ic scroll-line-down
964 bba111bc 2021-03-28 op Scroll down by one line.
965 bba111bc 2021-03-28 op .It Ic scroll-line-up
966 bba111bc 2021-03-28 op Scroll up by one line.
967 bba111bc 2021-03-28 op .It Ic scroll-up
968 bba111bc 2021-03-28 op Scroll up by one visual page.
969 12cf7d80 2021-07-15 op .It Ic suspend-telescope
970 12cf7d80 2021-07-15 op Suspend the current
973 753c6ac7 2021-07-14 op .It Ic swiper
974 753c6ac7 2021-07-14 op Jump to a line using the minibuffer.
976 b3be07ea 2021-07-18 op Jump to a heading using the minibuffer.
977 7a014cef 2021-04-01 op .It Ic toggle-help
978 7a014cef 2021-04-01 op Toggle side window with help about available keys and their associated
979 7a014cef 2021-04-01 op interactive command.
980 987d9c88 2021-07-15 op .It Ic toggle-pre-wrap
981 987d9c88 2021-07-15 op Toggle the wrapping of preformatted blocks.
982 f350bc73 2024-05-27 thomas.ad .It Ic toggle-styling
983 f350bc73 2024-05-27 thomas.ad Toggle the styling of the page.
984 f350bc73 2024-05-27 thomas.ad This remains in effect until toggled again.
986 a36bb43a 2024-01-15 op Go up one level in the path hierarchy.
987 288b931b 2022-04-13 op .It Ic write-buffer
988 288b931b 2022-04-13 op Save the current buffer to the disk.
990 bba111bc 2021-03-28 op .Ss Minibuffer commands
991 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
992 bba111bc 2021-03-28 op .It Ic mini-abort
993 bba111bc 2021-03-28 op Abort the current minibuffer action.
994 bba111bc 2021-03-28 op .It Ic mini-complete-and-exit
995 bba111bc 2021-03-28 op Complete the current minibuffer action.
996 bba111bc 2021-03-28 op .It Ic mini-delete-backward-char
997 bba111bc 2021-03-28 op Delete the character before the point.
998 bba111bc 2021-03-28 op .It Ic mini-delete-char
999 bba111bc 2021-03-28 op Delete the character after the point.
1000 448632c7 2024-06-07 op .It Ic mini-edit-external
1001 448632c7 2024-06-07 op Edit the minibuffer contents with an editor.
1002 de190a2b 2021-07-17 op .It Ic mini-goto-beginning
1003 de190a2b 2021-07-17 op Select the first completion, if any.
1004 de190a2b 2021-07-17 op .It Ic mini-goto-end
1005 de190a2b 2021-07-17 op Select the last completion, if any.
1006 bba111bc 2021-03-28 op .It Ic mini-kill-line
1007 b3be07ea 2021-07-18 op Delete from point until the end of the line.
1008 067b7ffd 2022-04-15 op .It Ic mini-kill-whole-line
1009 067b7ffd 2022-04-15 op Delete the whole line.
1010 bba111bc 2021-03-28 op .It Ic mini-next-history-element
1011 bba111bc 2021-03-28 op Load the previous history element.
1012 bba111bc 2021-03-28 op .It Ic mini-previous-history-element
1013 bba111bc 2021-03-28 op Load the next history element.
1016 7d2d15f5 2021-04-30 op The following aliases are available during
1017 7d2d15f5 2021-04-30 op .Ic execute-extended-command :
1018 7d2d15f5 2021-04-30 op .Bl -tag -width 16m -compact
1020 1e0f5c02 2022-01-15 op .Ic load-url
1022 c82b3fd6 2021-05-12 op .Ic tab-next
1023 c82b3fd6 2021-05-12 op .It Ic tabnew
1026 c82b3fd6 2021-05-12 op .Ic tab-previous
1027 7d2d15f5 2021-04-30 op .It Ic q No and Ic wq
1028 7d2d15f5 2021-04-30 op .Ic kill-telescope
1030 288b931b 2022-04-13 op .Ic write-buffer
1032 7ee780fa 2021-07-21 op .Sh ENVIRONMENT
1035 7ee780fa 2021-07-21 op is started, it inspects the following environment variables:
1036 7ee780fa 2021-07-21 op .Bl -tag -width NO_COLORS
1038 7ee780fa 2021-07-21 op The user's login directory.
1039 7ee780fa 2021-07-21 op .It Ev NO_COLORS
1040 7ee780fa 2021-07-21 op To decide whether to use colors or not.
1041 7ee780fa 2021-07-21 op The content of the variable doesn't matter.
1043 7ee780fa 2021-07-21 op The user's terminal name.
1044 68f64f35 2024-06-08 op .It Ev VISUAL , Ev EDITOR
1045 68f64f35 2024-06-08 op The editor spawned by the
1046 68f64f35 2024-06-08 op .Ic mini-edit-external
1050 68f64f35 2024-06-08 op the standard text editor is used.
1051 73389b00 2021-10-08 op .It Ev XDG_CACHE_HOME , Ev XDG_CONFIG_HOME , Ev XDG_DATA_HOME
1052 73389b00 2021-10-08 op If defined can alter the default location of the files used.
1057 73389b00 2021-10-08 op follows the XDG Base Directory Specification.
1059 73389b00 2021-10-08 op .Pa ~/.telescope
1060 73389b00 2021-10-08 op exists, XDG is ignored and all the files are stored inside it.
1061 73389b00 2021-10-08 op The usage of
1062 73389b00 2021-10-08 op .Ev XDG_CACHE_HOME ,
1063 73389b00 2021-10-08 op .Ev XDG_CONFIG_HOME
1065 73389b00 2021-10-08 op .Ev XDG_DATA_HOME
1066 73389b00 2021-10-08 op can further alter the location of these files.
1068 bba111bc 2021-03-28 op .Bl -tag -width Ds -compact
1069 eb2ed626 2021-10-07 op .It Pa ~/.config/telescope/config
1070 dca97b00 2021-06-19 op Default configuration file.
1071 7d7bc744 2024-02-23 op .It Pa ~/.config/telescope/certs.conf
1072 7d7bc744 2024-02-23 op URLs to client certificate mappings.
1073 de04b178 2021-11-26 op .It Pa ~/.local/share/telescope/pages/about_*.gmi
1074 eb2ed626 2021-10-07 op Overrides for built-in about: pages.
1075 eb2ed626 2021-10-07 op .It Pa ~/.local/share/telescope/bookmarks.gmi
1076 eb2ed626 2021-10-07 op Bookmarks file.
1077 7d7bc744 2024-02-23 op .It Pa ~/.local/share/telescope/certs/
1078 7d7bc744 2024-02-23 op Directory where client certificates
1079 7d7bc744 2024-02-23 op .Pq identities
1081 eb2ed626 2021-10-07 op .It Pa ~/.local/share/telescope/known_hosts
1082 7ee780fa 2021-07-21 op Hash of the certificates for all the known hosts.
1083 7ee780fa 2021-07-21 op Each line contains three fields: hostname with optional port number,
1084 7ee780fa 2021-07-21 op hash of the certificate and a numeric flag.
1085 eb2ed626 2021-10-07 op .It Pa ~/.cache/telescope/lock
1086 d0fd368a 2021-07-15 op Lock file used to prevent multiple instance of
1088 d0fd368a 2021-07-15 op from running at the same time.
1089 eb2ed626 2021-10-07 op .It Pa ~/.cache/telescope/session
1090 7ee780fa 2021-07-21 op The list of tabs from the last session.
1092 74ca8ef4 2021-06-19 op .Sh EXAMPLES
1093 984245ce 2021-06-23 op It's possible to browse
1094 984245ce 2021-06-23 op .Dq the small web
1095 984245ce 2021-06-23 op .Pq i.e. simple websites
1096 3a761ed2 2021-06-25 op by using programs like the duckling-proxy by defining a proxy in
1097 eb2ed626 2021-10-07 op .Pa ~/.config/telescope/config :
1098 984245ce 2021-06-23 op .Bd -literal -offset indent
1099 a0c41865 2021-07-20 op proxy http via "gemini://127.0.0.1:1965"
1100 a0c41865 2021-07-20 op proxy https via "gemini://127.0.0.1:1965"
1105 7ee780fa 2021-07-21 op without any configuration
1106 19f9cf0f 2021-06-24 op .Bd -literal -offset indent
1107 7d7bc744 2024-02-23 op $ telescope -c /dev/null
1109 7d7bc744 2024-02-23 op .Sh SEE ALSO
1110 7d7bc744 2024-02-23 op .Xr telescope-identity 1
1111 c7c89626 2024-06-13 thomas.ad .Xr xdg-open 1
1112 73389b00 2021-10-08 op .Sh STANDARDS
1114 73389b00 2021-10-08 op .%B XDG Base Directory Specification
1115 73389b00 2021-10-08 op .%U https://specifications.freedesktop.org/basedir-spec/latest/
1117 c7067b0b 2022-01-13 op .Sh ACKNOWLEDGEMENTS
1119 c7067b0b 2022-01-13 op .Dq Trust, but verify (where appropriate)
1120 c7067b0b 2022-01-13 op TOFU scheme was firstly suggested by thfr:
1121 c7067b0b 2022-01-13 op .Lk gemini://thfr.info/gemini/modified-trust-verify.gmi .
1123 bba111bc 2021-03-28 op .An -nosplit
1126 bba111bc 2021-03-28 op program was written by
1127 bba111bc 2021-03-28 op .An Omar Polo Aq Mt op@omarpolo.com .
1130 95e30305 2022-01-02 op assumes a UTF-8 environment and doesn't try to cope with other encodings.
1131 95e30305 2022-01-02 op This can cause strange rendering issues if you're lucky, or possibly
1132 95e30305 2022-01-02 op weird thing happening depending on your locale and terminal emulator.
1134 7ee780fa 2021-07-21 op There's no UI for out-of-band certificates validation.