Blob


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