Blame


1 bba111bc 2021-03-28 op .\" Copyright (c) 2021 Omar Polo <op@omarpolo.com>
2 bba111bc 2021-03-28 op .\"
3 bba111bc 2021-03-28 op .\" Permission to use, copy, modify, and distribute this software for any
4 bba111bc 2021-03-28 op .\" purpose with or without fee is hereby granted, provided that the above
5 bba111bc 2021-03-28 op .\" copyright notice and this permission notice appear in all copies.
6 bba111bc 2021-03-28 op .\"
7 bba111bc 2021-03-28 op .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 bba111bc 2021-03-28 op .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 bba111bc 2021-03-28 op .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 bba111bc 2021-03-28 op .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 bba111bc 2021-03-28 op .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 bba111bc 2021-03-28 op .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 bba111bc 2021-03-28 op .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 bba111bc 2021-03-28 op .Dd $Mdocdate: March 28 2021$
15 bba111bc 2021-03-28 op .Dt TELESCOPE 1
16 bba111bc 2021-03-28 op .Os
17 bba111bc 2021-03-28 op .Sh NAME
18 bba111bc 2021-03-28 op .Nm telescope
19 bba111bc 2021-03-28 op .Nd Gemini client
20 bba111bc 2021-03-28 op .Sh SYNOPSIS
21 bba111bc 2021-03-28 op .Nm
22 bba111bc 2021-03-28 op .Bk -words
23 c92e529c 2021-06-15 op .Op Fl hn
24 c92e529c 2021-06-15 op .Op Fl c Pa config
25 bba111bc 2021-03-28 op .Op Ar URL
26 bba111bc 2021-03-28 op .Ek
27 bba111bc 2021-03-28 op .Sh DESCRIPTION
28 bba111bc 2021-03-28 op .Nm
29 bba111bc 2021-03-28 op is an interactive browser for the Gemini protocol.
30 bba111bc 2021-03-28 op It is able to process text/gemini and more in general every text/* file.
31 bba111bc 2021-03-28 op .Nm
32 bba111bc 2021-03-28 op also features tabs, bookmarks and out-of-band TOFU verification.
33 c92e529c 2021-06-15 op .Pp
34 c92e529c 2021-06-15 op The arguments are as follows:
35 c92e529c 2021-06-15 op .Bl -tag -width tenletters
36 c92e529c 2021-06-15 op .It Fl h
37 c92e529c 2021-06-15 op Display version and usage.
38 c92e529c 2021-06-15 op .It Fl n
39 c92e529c 2021-06-15 op Configtest mode.
40 c92e529c 2021-06-15 op Only check the configuration file for validity.
41 c92e529c 2021-06-15 op .It Fl c Pa config
42 c92e529c 2021-06-15 op Specify an alternative configuration file.
43 c92e529c 2021-06-15 op By default
44 c92e529c 2021-06-15 op .Pa $HOME/.telescope/config
45 c92e529c 2021-06-15 op is loaded.
46 c92e529c 2021-06-15 op .El
47 bba111bc 2021-03-28 op .Sh TOFU
48 bba111bc 2021-03-28 op .Nm
49 bba111bc 2021-03-28 op aims to use the "Trust, but Verify (where appropriate)" approach.
50 bba111bc 2021-03-28 op The idea is to define three level of verification for a certificate:
51 bba111bc 2021-03-28 op .Bl -tag -width 12m
52 bba111bc 2021-03-28 op .It untrusted
53 bba111bc 2021-03-28 op the server fingerprint does NOT match the stored value
54 bba111bc 2021-03-28 op .It trusted
55 bba111bc 2021-03-28 op the server fingerprint matches the store one
56 bba111bc 2021-03-28 op .It verified
57 bba111bc 2021-03-28 op the fingerprint matches and has been verified out-of-band
58 bba111bc 2021-03-28 op .El
59 bba111bc 2021-03-28 op .Pp
60 bba111bc 2021-03-28 op Most of the time the
61 bba111bc 2021-03-28 op .Dq trusted
62 bba111bc 2021-03-28 op level is enough, but where is appropriate users should be able to
63 bba111bc 2021-03-28 op verify out-of-band the certificate.
64 bba111bc 2021-03-28 op .Pp
65 bba111bc 2021-03-28 op At the moment, there is no built-in support for an out-of-band
66 bba111bc 2021-03-28 op verification though.
67 bba111bc 2021-03-28 op .Pp
68 bba111bc 2021-03-28 op Known certificates are store in
69 bba111bc 2021-03-28 op .Pa ~/.telescope/known_hosts
70 bba111bc 2021-03-28 op with a format similar to the
71 bba111bc 2021-03-28 op .Xr ssh 1 Ns '
72 bba111bc 2021-03-28 op .Pa known_hosts
73 bba111bc 2021-03-28 op file.
74 bba111bc 2021-03-28 op Each line is a record and it's made up by three fields, separated by a
75 bba111bc 2021-03-28 op single space, according to the following format:
76 bba111bc 2021-03-28 op .Dq HOST HASH TRUSTED
77 bba111bc 2021-03-28 op where:
78 bba111bc 2021-03-28 op .Bl -tag -width 12m
79 bba111bc 2021-03-28 op .It HOST
80 eb4388ee 2021-04-25 op the hostname, optionally followed by a colon (":") and a port number.
81 bba111bc 2021-03-28 op .It HASH
82 bba111bc 2021-03-28 op is the hash of the certificate, as outputted by
83 6c04e8b6 2021-04-01 op .Xr tls_peer_cert_hash 3 .
84 bba111bc 2021-03-28 op .It TRUSTED
85 bba111bc 2021-03-28 op a single digit.
86 bba111bc 2021-03-28 op 0 means trusted, 1 verified.
87 bba111bc 2021-03-28 op .El
88 bba111bc 2021-03-28 op .Sh DEFAULT KEY BINDINGS
89 bba111bc 2021-03-28 op The default key bindings are very similar to GNU Emacs, but care has
90 bba111bc 2021-03-28 op been taken to include also bindings familiar for
91 bba111bc 2021-03-28 op .Xr vi 1
92 bba111bc 2021-03-28 op and
93 bba111bc 2021-03-28 op .Dq CUA
94 bba111bc 2021-03-28 op users.
95 bba111bc 2021-03-28 op In the following examples, C-x means Control-x, M-x means Meta-x,
96 bba111bc 2021-03-28 op where the Meta key may be either a special key on the keyboard or the
97 bba111bc 2021-03-28 op ALT key; otherwise ESC followed by the key X works as well, and C-M-x
98 bba111bc 2021-03-28 op means to press the key X together with both Control and Meta.
99 bba111bc 2021-03-28 op .Pp
100 bba111bc 2021-03-28 op Keys are usually a single character, like
101 bba111bc 2021-03-28 op .Sq p
102 bba111bc 2021-03-28 op or
103 bba111bc 2021-03-28 op .Sq n ,
104 bba111bc 2021-03-28 op but some special keys are accepted as well.
105 bba111bc 2021-03-28 op .Pp
106 bba111bc 2021-03-28 op .Bl -tag -width 16m -offset indent -compact
107 bba111bc 2021-03-28 op .It <up>
108 bba111bc 2021-03-28 op Up arrow
109 bba111bc 2021-03-28 op .It <down>
110 bba111bc 2021-03-28 op Down arrow
111 bba111bc 2021-03-28 op .It <left>
112 bba111bc 2021-03-28 op Left arrow
113 bba111bc 2021-03-28 op .It <right>
114 bba111bc 2021-03-28 op Right arrow
115 bba111bc 2021-03-28 op .It <prior>
116 bba111bc 2021-03-28 op Previous page/Page up
117 bba111bc 2021-03-28 op .It <next>
118 bba111bc 2021-03-28 op Next page/Page down
119 bba111bc 2021-03-28 op .It <home>
120 bba111bc 2021-03-28 op Home
121 bba111bc 2021-03-28 op .It <end>
122 bba111bc 2021-03-28 op End
123 bba111bc 2021-03-28 op .It <f0> thru <f63>
124 bba111bc 2021-03-28 op Function keys
125 bba111bc 2021-03-28 op .It del or backspace
126 bba111bc 2021-03-28 op Backspace
127 bba111bc 2021-03-28 op .It esc
128 bba111bc 2021-03-28 op Escape
129 bba111bc 2021-03-28 op .It space or spc
130 bba111bc 2021-03-28 op Space
131 bba111bc 2021-03-28 op .It enter or ret
132 bba111bc 2021-03-28 op Enter
133 bba111bc 2021-03-28 op .It tab
134 bba111bc 2021-03-28 op Tab
135 8dc60352 2021-06-15 op .It backtab
136 8dc60352 2021-06-15 op Depends on the configuration of the terminal emulator.
137 8dc60352 2021-06-15 op Usually is shift tab though.
138 bba111bc 2021-03-28 op .El
139 bba111bc 2021-03-28 op .Ss GNU Emacs-like keys
140 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
141 bba111bc 2021-03-28 op .It C-p
142 7dbaef94 2021-04-22 op previous-line
143 bba111bc 2021-03-28 op .It C-n
144 7dbaef94 2021-04-22 op next-line
145 bba111bc 2021-03-28 op .It C-f
146 7dbaef94 2021-04-22 op forward-char
147 bba111bc 2021-03-28 op .It C-b
148 7dbaef94 2021-04-22 op backward-char
149 bba111bc 2021-03-28 op .It M-{
150 7dbaef94 2021-04-22 op backward-paragraph
151 bba111bc 2021-03-28 op .It M-}
152 7dbaef94 2021-04-22 op forward-paragraph
153 bba111bc 2021-03-28 op .It C-a
154 7dbaef94 2021-04-22 op move-beginning-of-line
155 bba111bc 2021-03-28 op .It C-e
156 7dbaef94 2021-04-22 op move-end-of-line
157 bba111bc 2021-03-28 op .It M-v, M-space
158 7dbaef94 2021-04-22 op scroll-up
159 bba111bc 2021-03-28 op .It C-v, space
160 7dbaef94 2021-04-22 op scroll-down
161 bba111bc 2021-03-28 op .It M-<
162 7dbaef94 2021-04-22 op beginning-of-buffer
163 bba111bc 2021-03-28 op .It M->
164 7dbaef94 2021-04-22 op end-of-buffer
165 bba111bc 2021-03-28 op .It C-x C-c
166 7dbaef94 2021-04-22 op kill-telescope
167 bba111bc 2021-03-28 op .It C-g
168 7dbaef94 2021-04-22 op clear-minibuf
169 bba111bc 2021-03-28 op .It M-x
170 7dbaef94 2021-04-22 op execute-extended-command
171 bba111bc 2021-03-28 op .It C-x C-f
172 7dbaef94 2021-04-22 op load-url
173 bba111bc 2021-03-28 op .It C-x M-f
174 7dbaef94 2021-04-22 op load-current-url
175 bba111bc 2021-03-28 op .It C-x t 0
176 7dbaef94 2021-04-22 op tab-close
177 bba111bc 2021-03-28 op .It C-x t 1
178 7dbaef94 2021-04-22 op tab-close-other
179 bba111bc 2021-03-28 op .It C-x t 2
180 7dbaef94 2021-04-22 op tab-new
181 bba111bc 2021-03-28 op .It C-x t o
182 7dbaef94 2021-04-22 op tab-next
183 bba111bc 2021-03-28 op .It C-x t O
184 7dbaef94 2021-04-22 op tab-previous
185 bba111bc 2021-03-28 op .It C-x t m
186 7dbaef94 2021-04-22 op tab-move
187 bba111bc 2021-03-28 op .It C-x t M
188 7dbaef94 2021-04-22 op tab-move-to
189 bba111bc 2021-03-28 op .It C-M-b
190 7dbaef94 2021-04-22 op previous-page
191 bba111bc 2021-03-28 op .It C-M-f
192 7dbaef94 2021-04-22 op next-page
193 bba111bc 2021-03-28 op .It <f7> a
194 7dbaef94 2021-04-22 op bookmark-page
195 bba111bc 2021-03-28 op .It <f7> <f7>
196 7dbaef94 2021-04-22 op list-bookmarks
197 bba111bc 2021-03-28 op .El
198 bba111bc 2021-03-28 op .Ss Xr vi 1 Ns -like keys
199 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
200 bba111bc 2021-03-28 op .It k
201 7dbaef94 2021-04-22 op previous-line
202 bba111bc 2021-03-28 op .It j
203 7dbaef94 2021-04-22 op next-line
204 bba111bc 2021-03-28 op .It l
205 7dbaef94 2021-04-22 op forward-char
206 bba111bc 2021-03-28 op .It h
207 7dbaef94 2021-04-22 op backward-char
208 bba111bc 2021-03-28 op .It {
209 7dbaef94 2021-04-22 op backward-paragraph
210 bba111bc 2021-03-28 op .It }
211 7dbaef94 2021-04-22 op forward-paragraph
212 bba111bc 2021-03-28 op .It ^
213 7dbaef94 2021-04-22 op move-beginning-of-line
214 bba111bc 2021-03-28 op .It $
215 7dbaef94 2021-04-22 op move-end-of-line
216 bba111bc 2021-03-28 op .It K
217 7dbaef94 2021-04-22 op scroll-line-up
218 bba111bc 2021-03-28 op .It J
219 7dbaef94 2021-04-22 op scroll-line-down
220 bba111bc 2021-03-28 op .It g g
221 7dbaef94 2021-04-22 op beginning-of-buffer
222 6c04e8b6 2021-04-01 op .It G
223 7dbaef94 2021-04-22 op end-of-buffer
224 bba111bc 2021-03-28 op .It g D
225 7dbaef94 2021-04-22 op tab-close
226 bba111bc 2021-03-28 op .It g N
227 7dbaef94 2021-04-22 op tab-new
228 bba111bc 2021-03-28 op .It g t
229 7dbaef94 2021-04-22 op tab-next
230 bba111bc 2021-03-28 op .It g T
231 7dbaef94 2021-04-22 op tab-previous
232 bba111bc 2021-03-28 op .It g M-t
233 7dbaef94 2021-04-22 op tab-move
234 bba111bc 2021-03-28 op .It g M-T
235 7dbaef94 2021-04-22 op tab-move-to
236 bba111bc 2021-03-28 op .It H
237 7dbaef94 2021-04-22 op previous-page
238 bba111bc 2021-03-28 op .It L
239 7dbaef94 2021-04-22 op next-page
240 bba111bc 2021-03-28 op .It q
241 7dbaef94 2021-04-22 op kill-telescope
242 bba111bc 2021-03-28 op .It ESC
243 7dbaef94 2021-04-22 op clear-minibuf
244 bba111bc 2021-03-28 op .It :
245 7dbaef94 2021-04-22 op execute-extended-command
246 bba111bc 2021-03-28 op .El
247 bba111bc 2021-03-28 op .Ss CUA-like keys
248 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
249 bba111bc 2021-03-28 op .It <up>
250 7dbaef94 2021-04-22 op previous-line
251 bba111bc 2021-03-28 op .It <down>
252 7dbaef94 2021-04-22 op next-line
253 bba111bc 2021-03-28 op .It <right>
254 7dbaef94 2021-04-22 op forward-char
255 bba111bc 2021-03-28 op .It <left>
256 7dbaef94 2021-04-22 op backward-char
257 bba111bc 2021-03-28 op .It <prior>
258 7dbaef94 2021-04-22 op scroll-up
259 bba111bc 2021-03-28 op .It <next>
260 7dbaef94 2021-04-22 op scroll-down
261 bba111bc 2021-03-28 op .It M-<left>
262 7dbaef94 2021-04-22 op previous-page
263 bba111bc 2021-03-28 op .It M-<right>
264 7dbaef94 2021-04-22 op next-page
265 bba111bc 2021-03-28 op .El
266 bba111bc 2021-03-28 op .Ss Neither Emacs nor vi specific
267 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
268 7a014cef 2021-04-01 op .It <f1>
269 7dbaef94 2021-04-22 op toggle-help
270 bba111bc 2021-03-28 op .It enter
271 7dbaef94 2021-04-22 op push-button
272 bba111bc 2021-03-28 op .It M-enter
273 7dbaef94 2021-04-22 op push-button-new-tab
274 bba111bc 2021-03-28 op .It M-tab
275 7dbaef94 2021-04-22 op previous-button
276 8dc60352 2021-06-15 op .It backtab
277 8dc60352 2021-06-15 op previous-button
278 bba111bc 2021-03-28 op .It tab
279 7dbaef94 2021-04-22 op next-button
280 bba111bc 2021-03-28 op .El
281 bba111bc 2021-03-28 op .Ss Minibuffer-specific keys
282 bba111bc 2021-03-28 op .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
283 bba111bc 2021-03-28 op .It enter
284 7dbaef94 2021-04-22 op mini-complete-and-exit
285 bba111bc 2021-03-28 op .It C-g
286 7dbaef94 2021-04-22 op mini-abort
287 bba111bc 2021-03-28 op .It ESC
288 7dbaef94 2021-04-22 op mini-abort
289 bba111bc 2021-03-28 op .It C-d
290 7dbaef94 2021-04-22 op mini-delete-char
291 bba111bc 2021-03-28 op .It del
292 7dbaef94 2021-04-22 op mini-delete-backward-char
293 bba111bc 2021-03-28 op .It backspace
294 7dbaef94 2021-04-22 op mini-delete-backward-char
295 bba111bc 2021-03-28 op .It C-h
296 7dbaef94 2021-04-22 op mini-delete-backward-char
297 bba111bc 2021-03-28 op .It C-b
298 7dbaef94 2021-04-22 op backward-char
299 bba111bc 2021-03-28 op .It C-f
300 7dbaef94 2021-04-22 op forward-char
301 bba111bc 2021-03-28 op .It <left>
302 7dbaef94 2021-04-22 op backward-char
303 bba111bc 2021-03-28 op .It <right>
304 7dbaef94 2021-04-22 op forward-char
305 bba111bc 2021-03-28 op .It C-e
306 7dbaef94 2021-04-22 op move-end-of-line
307 bba111bc 2021-03-28 op .It C-a
308 7dbaef94 2021-04-22 op move-beginning-of-line
309 bba111bc 2021-03-28 op .It <end>
310 7dbaef94 2021-04-22 op move-end-of-line
311 bba111bc 2021-03-28 op .It <home>
312 7dbaef94 2021-04-22 op move-beginning-of-line
313 bba111bc 2021-03-28 op .It C-k
314 7dbaef94 2021-04-22 op mini-kill-line
315 bba111bc 2021-03-28 op .It M-p
316 7dbaef94 2021-04-22 op mini-previous-history-element
317 bba111bc 2021-03-28 op .It M-n
318 7dbaef94 2021-04-22 op mini-next-history-element
319 bba111bc 2021-03-28 op .It <up>
320 7dbaef94 2021-04-22 op mini-previous-history-element
321 bba111bc 2021-03-28 op .It <down>
322 7dbaef94 2021-04-22 op mini-next-history-element
323 bba111bc 2021-03-28 op .El
324 bba111bc 2021-03-28 op .Sh INTERACTIVE COMMANDS
325 bba111bc 2021-03-28 op Follows the documentation for the interactive commands.
326 bba111bc 2021-03-28 op These commands can be bound to a key or executed with
327 bba111bc 2021-03-28 op .Ic execute-extended-command .
328 bba111bc 2021-03-28 op .Ss Movement commands
329 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
330 bba111bc 2021-03-28 op .It Ic backward-char
331 bba111bc 2021-03-28 op Move point one character backward.
332 bba111bc 2021-03-28 op .It Ic backward-paragraph
333 bba111bc 2021-03-28 op Move point one paragraph backward.
334 bba111bc 2021-03-28 op .It Ic beginning-of-buffer
335 bba111bc 2021-03-28 op Move point to the beginning of the buffer.
336 bba111bc 2021-03-28 op .It Ic end-of-buffer
337 bba111bc 2021-03-28 op Move point to the end of the buffer.
338 bba111bc 2021-03-28 op .It Ic forward-char
339 bba111bc 2021-03-28 op Move point one character forward.
340 bba111bc 2021-03-28 op .It Ic forward-paragraph
341 bba111bc 2021-03-28 op Move point one paragraph forward.
342 bba111bc 2021-03-28 op .It Ic move-beginning-of-line
343 bba111bc 2021-03-28 op Move point at the beginning of the current (visual) line.
344 bba111bc 2021-03-28 op .It Ic move-end-of-line
345 bba111bc 2021-03-28 op Move point at the end of the current (visual) line.
346 bba111bc 2021-03-28 op .It Ic next-button
347 bba111bc 2021-03-28 op Move point to the next link.
348 bba111bc 2021-03-28 op .It Ic next-line
349 bba111bc 2021-03-28 op Move point to the next (visual) line, in the same column if possible.
350 bba111bc 2021-03-28 op .It Ic previous-button
351 bba111bc 2021-03-28 op Move point to the previous link.
352 bba111bc 2021-03-28 op .It Ic previous-line
353 bba111bc 2021-03-28 op Move point to the previous (visual) line.
354 bba111bc 2021-03-28 op .El
355 bba111bc 2021-03-28 op .Ss Bookmark-related commands
356 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
357 bba111bc 2021-03-28 op .It Ic bookmark-page
358 bba111bc 2021-03-28 op Add a link to the bookmark file.
359 bba111bc 2021-03-28 op It preloads the minibuffer with the current URL.
360 63875195 2021-04-01 op .It Ic list-bookmarks
361 bba111bc 2021-03-28 op Load the bookmarks page.
362 bba111bc 2021-03-28 op .El
363 bba111bc 2021-03-28 op .Ss Tab-related commands
364 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
365 bba111bc 2021-03-28 op .It Ic tab-close
366 bba111bc 2021-03-28 op Close the current tab.
367 bba111bc 2021-03-28 op .It Ic tab-close-other
368 bba111bc 2021-03-28 op Close all tabs but the current one.
369 bba111bc 2021-03-28 op .It Ic tab-move
370 bba111bc 2021-03-28 op Move the current tab after the next one, wrapping around if
371 bba111bc 2021-03-28 op needed.
372 bba111bc 2021-03-28 op .It Ic tab-move-to
373 bba111bc 2021-03-28 op Move the current tab before the previous one, wrapping around if needed.
374 bba111bc 2021-03-28 op .It Ic tab-new
375 bba111bc 2021-03-28 op Open a new tab.
376 bba111bc 2021-03-28 op .It Ic tab-next
377 bba111bc 2021-03-28 op Focus next tab, wrapping around eventually.
378 bba111bc 2021-03-28 op .It Ic tab-previous
379 bba111bc 2021-03-28 op Focus the previous tab, wrapping around eventually.
380 bba111bc 2021-03-28 op .El
381 bba111bc 2021-03-28 op .Ss Misc commands
382 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
383 bba111bc 2021-03-28 op .It Ic clear-minibuf
384 bba111bc 2021-03-28 op Clears the echo area.
385 bba111bc 2021-03-28 op .It Ic execute-extended-command
386 bba111bc 2021-03-28 op Prompts for a command name using the minibuffer.
387 bba111bc 2021-03-28 op .It Ic kill-telescope
388 bba111bc 2021-03-28 op Quit
389 bba111bc 2021-03-28 op .Nm .
390 bba111bc 2021-03-28 op .It Ic load-current-url
391 bba111bc 2021-03-28 op Prompts for an URL, the minibuffer is preloaded with the current
392 bba111bc 2021-03-28 op one.
393 bba111bc 2021-03-28 op .It Ic load-url
394 bba111bc 2021-03-28 op Prompts for an URL.
395 bba111bc 2021-03-28 op .It Ic next-page
396 bba111bc 2021-03-28 op Load the next item in the history list.
397 bba111bc 2021-03-28 op .It Ic previous-page
398 bba111bc 2021-03-28 op Load the previous item in the history list.
399 bba111bc 2021-03-28 op .It Ic push-button
400 bba111bc 2021-03-28 op Follow the link on the current line.
401 bba111bc 2021-03-28 op .It Ic push-button-new-tab
402 bba111bc 2021-03-28 op Follow the link on the current line on a new tab.
403 bba111bc 2021-03-28 op .It Ic redraw
404 bba111bc 2021-03-28 op Redraws the screen, useful if some background program messed up the
405 bba111bc 2021-03-28 op display.
406 bba111bc 2021-03-28 op .It Ic scroll-down
407 bba111bc 2021-03-28 op Scroll down by one visual page.
408 bba111bc 2021-03-28 op .It Ic scroll-line-down
409 bba111bc 2021-03-28 op Scroll down by one line.
410 bba111bc 2021-03-28 op .It Ic scroll-line-up
411 bba111bc 2021-03-28 op Scroll up by one line.
412 bba111bc 2021-03-28 op .It Ic scroll-up
413 bba111bc 2021-03-28 op Scroll up by one visual page.
414 7a014cef 2021-04-01 op .It Ic toggle-help
415 7a014cef 2021-04-01 op Toggle side window with help about available keys and their associated
416 7a014cef 2021-04-01 op interactive command.
417 bba111bc 2021-03-28 op .El
418 bba111bc 2021-03-28 op .Ss Minibuffer commands
419 bba111bc 2021-03-28 op .Bl -tag -width execute-extended-command -compact
420 bba111bc 2021-03-28 op .It Ic mini-abort
421 bba111bc 2021-03-28 op Abort the current minibuffer action.
422 bba111bc 2021-03-28 op .It Ic mini-complete-and-exit
423 bba111bc 2021-03-28 op Complete the current minibuffer action.
424 bba111bc 2021-03-28 op .It Ic mini-delete-backward-char
425 bba111bc 2021-03-28 op Delete the character before the point.
426 bba111bc 2021-03-28 op .It Ic mini-delete-char
427 bba111bc 2021-03-28 op Delete the character after the point.
428 bba111bc 2021-03-28 op .It Ic mini-kill-line
429 bba111bc 2021-03-28 op Delete from the point until the end of the line.
430 bba111bc 2021-03-28 op .It Ic mini-next-history-element
431 bba111bc 2021-03-28 op Load the previous history element.
432 bba111bc 2021-03-28 op .It Ic mini-previous-history-element
433 bba111bc 2021-03-28 op Load the next history element.
434 bba111bc 2021-03-28 op .El
435 7d2d15f5 2021-04-30 op .Ss Aliases
436 7d2d15f5 2021-04-30 op The following aliases are available during
437 7d2d15f5 2021-04-30 op .Ic execute-extended-command :
438 7d2d15f5 2021-04-30 op .Bl -tag -width 16m -compact
439 c82b3fd6 2021-05-12 op .It Ic tabn
440 c82b3fd6 2021-05-12 op .Ic tab-next
441 c82b3fd6 2021-05-12 op .It Ic tabnew
442 c82b3fd6 2021-05-12 op .Ic tab-new
443 c82b3fd6 2021-05-12 op .It Ic tabp
444 c82b3fd6 2021-05-12 op .Ic tab-previous
445 7d2d15f5 2021-04-30 op .It Ic q No and Ic wq
446 7d2d15f5 2021-04-30 op .Ic kill-telescope
447 7d2d15f5 2021-04-30 op .El
448 bba111bc 2021-03-28 op .Sh FILES
449 bba111bc 2021-03-28 op .Bl -tag -width Ds -compact
450 bba111bc 2021-03-28 op .It Pa ~/.telescope/bookmarks.gmi
451 bba111bc 2021-03-28 op Holds the bookmarks.
452 bba111bc 2021-03-28 op .It Pa ~/.telescope/known_hosts
453 bba111bc 2021-03-28 op Contains a list of host keys for all the hosts the user has visited.
454 bba111bc 2021-03-28 op See the TOFU section for more info.
455 e9b1e094 2021-04-01 op .It Pa ~/.telescope/session
456 e9b1e094 2021-04-01 op Contains the list of opened tabs in the last session, one per line.
457 e9b1e094 2021-04-01 op Gets written on
458 e9b1e094 2021-04-01 op .Ic kill-telescope
459 e9b1e094 2021-04-01 op and loaded on startup.
460 6c04e8b6 2021-04-01 op .El
461 bba111bc 2021-03-28 op .Sh AUTHORS
462 bba111bc 2021-03-28 op .An -nosplit
463 bba111bc 2021-03-28 op The
464 bba111bc 2021-03-28 op .Nm
465 bba111bc 2021-03-28 op program was written by
466 bba111bc 2021-03-28 op .An Omar Polo Aq Mt op@omarpolo.com .