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 .It <f5>
286 reload-page
287 .It r
288 reload-page
289 .El
290 .Ss Neither Emacs nor vi specific
291 .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
292 .It <f1>
293 toggle-help
294 .It enter
295 push-button
296 .It M-enter
297 push-button-new-tab
298 .It M-tab
299 previous-button
300 .It backtab
301 previous-button
302 .It tab
303 next-button
304 .It M-t
305 tab-select
306 .El
307 .Ss Minibuffer-specific keys
308 .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
309 .It enter
310 mini-complete-and-exit
311 .It C-g
312 mini-abort
313 .It ESC
314 mini-abort
315 .It C-d
316 mini-delete-char
317 .It del
318 mini-delete-backward-char
319 .It backspace
320 mini-delete-backward-char
321 .It C-h
322 mini-delete-backward-char
323 .It C-b
324 backward-char
325 .It C-f
326 forward-char
327 .It <left>
328 backward-char
329 .It <right>
330 forward-char
331 .It C-e
332 move-end-of-line
333 .It C-a
334 move-beginning-of-line
335 .It <end>
336 move-end-of-line
337 .It <home>
338 move-beginning-of-line
339 .It C-k
340 mini-kill-line
341 .It M-p
342 mini-previous-history-element
343 .It M-n
344 mini-next-history-element
345 .It C-p
346 previous-completion
347 .It C-n
348 next-completion
349 .It <up>
350 previous-completion
351 .It <down>
352 next-completion
353 .It tab
354 insert-current-candidate
355 .El
356 .Sh INTERACTIVE COMMANDS
357 Follows the documentation for the interactive commands.
358 These commands can be bound to a key or executed with
359 .Ic execute-extended-command .
360 .Ss Movement commands
361 .Bl -tag -width execute-extended-command -compact
362 .It Ic backward-char
363 Move point one character backward.
364 .It Ic backward-paragraph
365 Move point one paragraph backward.
366 .It Ic beginning-of-buffer
367 Move point to the beginning of the buffer.
368 .It Ic end-of-buffer
369 Move point to the end of the buffer.
370 .It Ic forward-char
371 Move point one character forward.
372 .It Ic forward-paragraph
373 Move point one paragraph forward.
374 .It Ic insert-current-candidate
375 Copy the current selection text as minibuffer input.
376 .It Ic move-beginning-of-line
377 Move point at the beginning of the current (visual) line.
378 .It Ic move-end-of-line
379 Move point at the end of the current (visual) line.
380 .It Ic next-button
381 Move point to the next link.
382 .It Ic next-completion
383 Select the next completion.
384 .It Ic next-heading
385 Move point to the next heading.
386 .It Ic next-line
387 Move point to the next (visual) line, in the same column if possible.
388 .It Ic previous-button
389 Move point to the previous link.
390 .It Ic previous-completion
391 Select the previous completion.
392 .It Ic previous-heading
393 Move point to the previous heading.
394 .It Ic previous-line
395 Move point to the previous (visual) line.
396 .El
397 .Ss Bookmark-related commands
398 .Bl -tag -width execute-extended-command -compact
399 .It Ic bookmark-page
400 Add a link to the bookmark file.
401 It preloads the minibuffer with the current URL.
402 .It Ic list-bookmarks
403 Load the bookmarks page.
404 .El
405 .Ss Tab-related commands
406 .Bl -tag -width execute-extended-command -compact
407 .It Ic tab-close
408 Close the current tab.
409 .It Ic tab-close-other
410 Close all tabs but the current one.
411 .It Ic tab-move
412 Move the current tab after the next one, wrapping around if
413 needed.
414 .It Ic tab-move-to
415 Move the current tab before the previous one, wrapping around if needed.
416 .It Ic tab-new
417 Open a new tab.
418 .It Ic tab-next
419 Focus next tab, wrapping around eventually.
420 .It Ic tab-previous
421 Focus the previous tab, wrapping around eventually.
422 .It Ic tab-select
423 Switch to a tab using the minibuffer.
424 .El
425 .Ss Misc commands
426 .Bl -tag -width execute-extended-command -compact
427 .It Ic clear-minibuf
428 Clears the echo area.
429 .It Ic dec-fill-column
430 Decrements fill-column by two.
431 .It Ic execute-extended-command
432 Prompts for a command name using the minibuffer.
433 .It Ic kill-telescope
434 Quit
435 .Nm .
436 .It Ic inc-fill-column
437 Increments fill-column by two.
438 .It Ic load-current-url
439 Prompts for an URL, the minibuffer is preloaded with the current
440 one.
441 .It Ic load-url
442 Prompts for an URL.
443 .It Ic next-page
444 Load the next item in the history list.
445 .It Ic olivetti-mode
446 Toggle olivetti mode (i.e. horizontal centering of the lines of the
447 window.)
448 .It Ic previous-page
449 Load the previous item in the history list.
450 .It Ic push-button
451 Follow the link on the current line, or toggle the visibility of the
452 following preformatted block if called when the cursor is on the
453 heading of the block.
454 .It Ic push-button-new-tab
455 Follow the link on the current line on a new tab.
456 .It Ic redraw
457 Redraw the screen, useful if some background program messed up the
458 display.
459 .It Ic reload-page
460 Reload the current page.
461 .It Ic scroll-down
462 Scroll down by one visual page.
463 .It Ic scroll-line-down
464 Scroll down by one line.
465 .It Ic scroll-line-up
466 Scroll up by one line.
467 .It Ic scroll-up
468 Scroll up by one visual page.
469 .It Ic toggle-help
470 Toggle side window with help about available keys and their associated
471 interactive command.
472 .El
473 .Ss Minibuffer commands
474 .Bl -tag -width execute-extended-command -compact
475 .It Ic mini-abort
476 Abort the current minibuffer action.
477 .It Ic mini-complete-and-exit
478 Complete the current minibuffer action.
479 .It Ic mini-delete-backward-char
480 Delete the character before the point.
481 .It Ic mini-delete-char
482 Delete the character after the point.
483 .It Ic mini-kill-line
484 Delete from the point until the end of the line.
485 .It Ic mini-next-history-element
486 Load the previous history element.
487 .It Ic mini-previous-history-element
488 Load the next history element.
489 .El
490 .Ss Aliases
491 The following aliases are available during
492 .Ic execute-extended-command :
493 .Bl -tag -width 16m -compact
494 .It Ic tabn
495 .Ic tab-next
496 .It Ic tabnew
497 .Ic tab-new
498 .It Ic tabp
499 .Ic tab-previous
500 .It Ic q No and Ic wq
501 .Ic kill-telescope
502 .El
503 .Sh CONFIGURATION FILE
504 During the startup,
505 .Nm
506 reads the configuration file at
507 .Pa ~/.telescope/config
508 or the one given with the
509 .Fl c
510 flag.
511 .Pp
512 The format of the configuration file is fairly flexible.
513 The current line can be extended over multiple ones using a
514 backslash
515 .Pq Sq \e .
516 Comments can be put anywhere in the file using a hash mark
517 .Pq Sq # ,
518 and extend to the end of the current line, but backslashes can't be
519 used to extend comments over multiple lines.
520 .Pp
521 The following constructs are available:
522 .Bl -tag -width Ds
523 .It Ic bind Ar map Ar key Ar cmd
524 Bind
525 .Ar key
526 to the function
527 .Ar cmd
528 in the keymap
529 .Ar map .
530 Valid values for map are
531 .Dq global-map
532 .Pq i.e. when the user is viewing a page
533 and
534 .Dq minibuffer-map
535 .Pq i.e. when the minibuffer has the focus.
536 .Ar key
537 follows the same syntax described in
538 .Sx DEFAULT KEY BINDINGS
539 and all the possible functions are listed in
540 .Sx INTERACTIVE COMMANDS .
541 .It Ic proxy Ar proto Ic via Ar url
542 Use
543 .Ar url
544 as proxy for all URLs with
545 protocol
546 .Ar proto .
547 .Ar url
548 must be a Gemini URI without path, query and fragment component.
549 .It Ic set Ar opt No = Ar val
550 Set the option
551 .Ar opt
552 to the value
553 .Ar val .
554 Valid options are:
555 .Pp
556 .Bl -tag -width twelveletters -compact
557 .It enable-colors
558 .Pq integer
559 If not zero, enable colours.
560 By default is 1 if
561 .Ev NO_COLORS
562 is not set, 0 otherwise.
563 .It fill-column
564 .Pq integer
565 If greater than zero, lines of text will be formatted in a way that
566 don't exceed the given number of columns.
567 By default is 80.
568 .It hide-pre-blocks
569 .Pq integer
570 If nonzero, hide by default the body of the preformatted blocks.
571 By default is zero.
572 .Ic push-button
573 can be used to toggle the visibility per-block.
574 .It hide-pre-context
575 .Pq integer
576 If nonzero, hide the start and end line of the preformatted blocks.
577 If both hide-pre-context and hide-pre-blocks are nonzero, preformatted
578 blocks are irremediably hidden.
579 By default is zero.
580 .It new-tab-url
581 .Pq string
582 URL for the new tab page.
583 By default is
584 .Dq about:new .
585 .It olivetti-mode
586 .Pq integer
587 Enable
588 .Ic olivetti-mode
589 if non zero.
590 By default is 1.
591 .El
592 .It Ic style Ar name Ar option
593 Change the styling of the element identified by
594 .Ar name .
595 Multiple options may be specified within curly braces.
596 Valid style identifiers are:
597 .Bl -tag -width 16m -compact -offset Ds
598 .It line
599 for the area outside the lines in the body of the page.
600 .It line.text
601 for text lines.
602 .It line.link
603 for link lines.
604 .It line.title1..3
605 for headingse
606 .It line.item
607 for item lines.
608 .It line.quote
609 for quotes.
610 .It line.pre.start
611 for the heading of a preformatted block.
612 .It line.pre
613 for the content of a preformatted block.
614 .It line.pre.end
615 for the closing line of a preformatted block.
616 .It minibuffer
617 for the minibuffer
618 .Dq i.e. the last line of the window
619 .It modeline
620 for the modeline
621 .Dq i.e. the info line right above the minibuffer
622 .It tabline
623 for the tabline.
624 .It tabline.tab
625 for the non-focused tabs.
626 .It tabline.current
627 for the focused tab.
628 .El
629 .Pp
630 Valid options are:
631 .Bl -tag -width Ds
632 .It Ic attr Ar prefix Oo Ar line Oo Ar trail Oc Oc
633 Sets the text attributes.
634 If only one value is given,
635 .Ar line
636 and
637 .Ar trail
638 default to that; if two values are given then
639 .Ar trail
640 defaults to
641 .Ar prefix .
642 Each attribute is a comma-separated list of keywords:
643 .Bl -tag -width underline -compact -offset Ds
644 .It Ic normal
645 no attributes.
646 .It Ic standout
647 best highlighting mode for the terminal.
648 .It Ic underline
649 underlines the text.
650 .It Ic reverse
651 reverses background/foreground colors.
652 .It Ic blink
653 makes the text blinking.
654 .It Ic dim
655 half bright.
656 .It Ic bold
657 extra bright or bold.
658 .El
659 .Pp
660 Only the styles under the
661 .Dq line.
662 prefix accept up to three attributes.
663 The other will only use the first one given.
664 .It Ic bg Ar prefix Oo Ar line Oo Ar trail Oc Oc
665 Sets the background color.
666 Follows the same behaviour as
667 .Ic attr
668 regarding the optional parameters.
669 The colour is one of black, red, green, yellow, blue,
670 magenta, cyan and white; colour0 to colour255
671 .Pq or color0 to color255
672 from the 256-colour set;
673 default for the default colour.
674 .It Ic fg Ar prefix Oo Ar line Oo Ar trail Oc Oc
675 Sets the foreground color.
676 It behaves just like
677 .Ic bg .
678 .It Ic prefix Ar prfx Op Ar cont
679 Sets the prefix for the current line type to
680 .Ar prfx
681 and
682 .Ar cont
683 as the prefix for the continuation lines
684 .Pq i.e. when a long line gets wrapped.
685 If
686 .Ar cont
687 is not given its value will be the same of
688 .Ar prfx .
689 .El
690 .El
691 .Sh FILES
692 .Bl -tag -width Ds -compact
693 .It Pa ~/.telescope/bookmarks.gmi
694 Holds the bookmarks.
695 .It Pa ~/.telescope/config
696 Default configuration file.
697 .It Pa ~/.telescope/known_hosts
698 Contains a list of host keys for all the hosts the user has visited.
699 See the TOFU section for more info.
700 .It Pa ~/.telescope/session
701 Contains the list of opened tabs in the last session, one per line.
702 Gets written on
703 .Ic kill-telescope
704 and loaded on startup.
705 .El
706 .Sh EXAMPLES
707 The following is my config file:
708 .Bd -literal -offset indent
709 # enable colors regardless of $NO_COLOR
710 set enable-colors = 1
712 style line.item {
713 prefix " • " " "
716 style line.link {
717 prefix "→ " " "
720 style line.quote {
721 prefix " ┃ "
723 .Ed
724 .Pp
725 It's possible to browse
726 .Dq the small web
727 .Pq i.e. simple websites
728 by using programs like the duckling-proxy by defining a proxy in
729 .Pa ~/.telescope/config :
730 .Bd -literal -offset indent
731 proxy http via "gemini://localhost:1965"
732 proxy https via "gemini://localhost:1965"
733 .Ed
734 .Pp
735 To load
736 .Nm
737 without any configuration use
738 .Bd -literal -offset indent
739 telescope -c /dev/null
740 .Ed
741 .Sh AUTHORS
742 .An -nosplit
743 The
744 .Nm
745 program was written by
746 .An Omar Polo Aq Mt op@omarpolo.com .