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