Commit Diff


commit - 15c3a9b724163bfc951b7e85e94a55fcbf0eff9b
commit + cc9bf8f2ade16cc562056941de3e547886c6a928
blob - /dev/null
blob + dd159a6a0a714106ec801bd43df5dd2152bd8c78 (mode 644)
--- /dev/null
+++ site/Makefile
@@ -0,0 +1,19 @@
+.PHONY: all serve-www serve-gemini upload
+
+all: telescope.1.html telescope.1.txt
+
+telescope.1.html: ../telescope.1
+	./mdoc2html.sh $? $@
+
+telescope.1.txt: ../telescope.1
+	MANWIDTH=72 man -Tutf8 -l $? | col -b > $@
+
+serve-www:
+	python3 -m http.server 8888
+
+serve-gemini:
+	gmid -p 1966 .
+
+upload:
+	rsync --delete -a . op:sites/telescope.omarpolo.com
+	rsync --delete -a . op:gemini/telescope.omarpolo.com
blob - /dev/null
blob + 89fb8ab14c872a5df65936844e1edcaea7b7fa12 (mode 644)
Binary files /dev/null and site/gallery/contrib-brutalist.png differ
blob - /dev/null
blob + 41ccc459cd6ee5580d49717898287c038862af1e (mode 644)
--- /dev/null
+++ site/gallery/index.gmi
@@ -0,0 +1,18 @@
+=> /			Home
+=> /telescope.1.txt	Docs
+
+# Gallery
+
+=> xterm-default-look.png		default look on bright terminal
+=> kitty-default-look.png		default look on dark terminal
+
+=> xterm-contrib-light.png		the contrib/light theme
+=> kitty-contrib-dark.png		the contrib/dark theme
+
+=> xterm-contrib-light-swiper.png	swiper with the contrib/light theme
+=> kitty-contrib-dark-swiper.png	swiper with the contrib/dark theme
+
+=> xterm-contrib-light-about-help.png	about:help with the contrib/light theme
+=> kitty-contrib-dark-about-help.png	about:help with the contrib/dark theme
+
+=> contrib-brutalist.png		Brutalist theme
blob - /dev/null
blob + 71690c81c7272991672606de578b89c5136bf673 (mode 644)
--- /dev/null
+++ site/gallery/index.html
@@ -0,0 +1,208 @@
+<!doctype html>
+<html>
+  <head>
+    <title>Gallery | Telescope</title>
+    <meta charset="utf8">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <style>
+    body {
+      font-family: monospace;
+      font-size: 14px;
+      max-width: 780px;
+      margin: 0 auto;
+      padding: 20px;
+      padding-bottom: 80px;
+    }
+
+    h1::before {
+      content: "# ";
+    }
+
+    h2 {
+      margin-top: 40px;
+    }
+
+    h2::before {
+      content: "## ";
+    }
+
+    h3::before {
+      content: "### ";
+    }
+
+    blockquote {
+      margin: 0;
+      padding: 0;
+    }
+
+    blockquote::before {
+      content: "> ";
+    }
+
+    blockquote p {
+      font-style: italic;
+      display: inline;
+    }
+
+    p.link::before {
+      content: "→ ";
+    }
+
+    hr {
+      border: 0;
+      height: 1px;
+      background-color: #222;
+      width: 100%;
+      display: block;
+      margin: 2em auto;
+    }
+
+    pre {
+      overflow: auto;
+    }
+
+    pre.banner {
+      display: flex;
+      flex-direction: row;
+      justify-content: center;
+    }
+
+    code, kbd {
+      color: #9d109d;
+    }
+
+    img {
+      display: block;
+      margin: 0 auto;
+      max-width: 100%;
+    }
+
+    figcaption {
+      margin: 0;
+      padding: 10px 0;
+      text-align: center;
+    }
+
+    main {
+      display: flex;
+      flex-direction: row;
+      flex-wrap: wrap;
+      justify-content: space-around;
+    }
+
+    figure {
+      width: 40%;
+      margin: 1rem;
+    }
+
+    @media (prefers-color-scheme: dark) {
+      body {
+        background-color: #222;
+        color: white;
+      }
+
+      img {
+        filter: brightness(0.65);
+        transition: filter 0.2s ease-in-out;
+      }
+
+      img:hover {
+        filter: brightness(1.0);
+      }
+
+      a {
+        color: aqua;
+      }
+
+      hr {
+        background-color: #ddd;
+      }
+
+      code, kbd {
+        color: #ff4cff;
+      }
+    }
+
+    @media (max-width: 400px) {
+      pre.banner { font-size: 9px; }
+    }
+
+    @media (max-width: 500px) {
+      pre.banner { font-size: 10px; }
+    }
+    </style>
+  </head>
+  <body>
+    <header>
+      <nav>
+        <a href="/">Home</a> | Gallery | <a href="/telescope.1.html">Docs</a>
+      </nav>
+    </header>
+    <main>
+
+      <figure>
+        <a href="xterm-default-look.png">
+          <img src="thumb-xterm-default-look.png" alt="xterm-default-look.png" />
+        </a>
+        <figcaption>default look on bright terminal</figcaption>
+      </figure>
+
+      <figure>
+        <a href="kitty-default-look.png">
+          <img src="thumb-kitty-default-look.png" alt="kitty-default-look.png" />
+        </a>
+        <figcaption>default look on dark terminal</figcaption>
+      </figure>
+
+      <figure>
+        <a href="xterm-contrib-light.png">
+          <img src="thumb-xterm-contrib-light.png" alt="xterm-contrib-light.png" />
+        </a>
+        <figcaption>the contrib/light theme</figcaption>
+      </figure>
+
+      <figure>
+        <a href="kitty-contrib-dark.png">
+          <img src="thumb-kitty-contrib-dark.png" alt="kitty-contrib-dark.png" />
+        </a>
+        <figcaption>the contrib/dark theme</figcaption>
+      </figure>
+
+      <figure>
+        <a href="xterm-contrib-light-swiper.png">
+          <img src="thumb-xterm-contrib-light-swiper.png" alt="xterm-contrib-light-swiper.png" />
+        </a>
+        <figcaption>swiper with the contrib/light theme</figcaption>
+      </figure>
+
+      <figure>
+        <a href="kitty-contrib-dark-swiper.png">
+          <img src="thumb-kitty-contrib-dark-swiper.png" alt="kitty-contrib-dark-swiper.png" />
+        </a>
+        <figcaption>swiper with the contrib/dark theme</figcaption>
+      </figure>
+
+      <figure>
+        <a href="xterm-contrib-light-about-help.png">
+          <img src="thumb-xterm-contrib-light-about-help.png" alt="xterm-contrib-light-about-help.png" />
+        </a>
+        <figcaption>about:help with the contrib/light theme</figcaption>
+      </figure>
+
+      <figure>
+        <a href="kitty-contrib-dark-about-help.png">
+          <img src="thumb-kitty-contrib-dark-about-help.png" alt="kitty-contrib-dark-about-help.png" />
+        </a>
+        <figcaption>about:help with the contrib/dark theme</figcaption>
+      </figure>
+
+      <figure>
+        <a href="contrib-brutalist.png">
+          <img src="thumb-contrib-brutalist.png" alt="contrib-brutalist.png" />
+        </a>
+        <figcaption>Brutalist theme</figcaption>
+      </figure>
+
+    </main>
+  </body>
+</html>
blob - /dev/null
blob + 1549b03c690f36ecb7c77c0938fb980fe678d65d (mode 644)
Binary files /dev/null and site/gallery/kitty-contrib-dark-about-help.png differ
blob - /dev/null
blob + a44d14bd763eebb52c0d47638b4a998d956df306 (mode 644)
Binary files /dev/null and site/gallery/kitty-contrib-dark-swiper.png differ
blob - /dev/null
blob + 4e1cb100372535dcd95b9f717e6d8b8328422eb2 (mode 644)
Binary files /dev/null and site/gallery/kitty-contrib-dark.png differ
blob - /dev/null
blob + e5958044ad89e1d7d9eb8b0e55b644a18fe3502b (mode 644)
Binary files /dev/null and site/gallery/kitty-default-look.png differ
blob - /dev/null
blob + c63bf46995a5c8e4dc471e31dd44c5df108a84fd (mode 644)
Binary files /dev/null and site/gallery/thumb-contrib-brutalist.png differ
blob - /dev/null
blob + 74f8053fcf0236f06cf7956afe92b6caec0e4ffe (mode 644)
Binary files /dev/null and site/gallery/thumb-kitty-contrib-dark-about-help.png differ
blob - /dev/null
blob + f556f8b86978133bf9579057aa06a2531a7f0656 (mode 644)
Binary files /dev/null and site/gallery/thumb-kitty-contrib-dark-swiper.png differ
blob - /dev/null
blob + 89bac118f433f36ff675794cdc87e20a1b95c42b (mode 644)
Binary files /dev/null and site/gallery/thumb-kitty-contrib-dark.png differ
blob - /dev/null
blob + 0028874e763764ad86d4827d60f9f3bb6bc5afd0 (mode 644)
Binary files /dev/null and site/gallery/thumb-kitty-default-look.png differ
blob - /dev/null
blob + ccbaa33ff0abed8d25690f2d9fe258f242719c37 (mode 644)
Binary files /dev/null and site/gallery/thumb-xterm-contrib-light-about-help.png differ
blob - /dev/null
blob + 19fe6e1650f0493f3ac9bf7e518f8cf82bfc8001 (mode 644)
Binary files /dev/null and site/gallery/thumb-xterm-contrib-light-swiper.png differ
blob - /dev/null
blob + 128c2cf1614d880aa24be63a02858842d139cf21 (mode 644)
Binary files /dev/null and site/gallery/thumb-xterm-contrib-light.png differ
blob - /dev/null
blob + bb07a0326da32b32da013602907a115a0105e75b (mode 644)
Binary files /dev/null and site/gallery/thumb-xterm-default-look.png differ
blob - /dev/null
blob + e20c6a4430e07e61f70520b7b10d52a238da02c4 (mode 644)
Binary files /dev/null and site/gallery/xterm-contrib-light-about-help.png differ
blob - /dev/null
blob + 0085be332c87b9bd5ae99bef33514dda54e35d44 (mode 644)
Binary files /dev/null and site/gallery/xterm-contrib-light-swiper.png differ
blob - /dev/null
blob + 4e4f074603420ea4e4441d9b33eb42c9524b1884 (mode 644)
Binary files /dev/null and site/gallery/xterm-contrib-light.png differ
blob - /dev/null
blob + 01bb23f91ff1e62d3abe622de5a3ad166932a51d (mode 644)
Binary files /dev/null and site/gallery/xterm-default-look.png differ
blob - /dev/null
blob + 38d2eca47e848857ca70693c1d46bc8c93413c55 (mode 644)
--- /dev/null
+++ site/index.gmi
@@ -0,0 +1,117 @@
+=> /gallery/		Gallery
+=> /telescope.1.txt	Docs
+
+# Telescope
+
+> Telescope is a w3m-like browser for Gemini.
+
+``` Ascii art of the word “Telescope” and “v0.5.2”
+ _______         __
+|_     _|.-----.|  |.-----.-----.----.-----.-----.-----.
+  |   |  |  -__||  ||  -__|__ --|  __|  _  |  _  |  -__|
+  |___|  |_____||__||_____|_____|____|_____|   __|_____|
+                                           |__| v0.5.2
+```
+
+Telescope is written entirely for fun, as a hobbystic project in my free time.  As such, it lacks a ton of features you’ll find in more mature Gemini browsers, but it also has some unique ones.
+
+The UI is strongly inspired from Emacs and W3M, so you’ll find some familiar concepts, such as the minibuffer or the tabline, and the default keybindigs also reflect this, but care has been taken to add keys familiar for vi and CUA users too.
+
+=> https://asciinema.org/a/426862	Asciinema record
+
+## Install
+
+=> https://repology.org/project/telescope/versions Some distros provide a package — thanks to the maintainers!
+
+Source code and precompiled binaries for linux are available:
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.2.tar.gz	telescope-0.5.2.tar.gz
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope.linux.aarch64	telescope.linux.aarch64
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope.linux.amd64	telescope.linux.amd64
+
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.2-binaries.tar.gz telescope-0.5.2-binaries.tar.gz
+
+When in doubt, compile from source.  It’s easy and takes less than a minute on a raspberry pi 3.  The dependencies are:
+* libncurses
+* libevent
+* libtls (from either LibreSSL or libretls)
+* yacc (or GNU bison)
+
+Once all the dependencies are installed, building is as easy as:
+
+```Example of how to compile from source
+$ curl -LO https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.2.tar.gz
+$ tar xzvf telescope-0.5.2.tar.gz
+$ cd telescope-0.5.2
+$ ./configure
+$ make
+$ sudo make install # eventually
+```
+
+A SHA256 file containing the checksums is available.  However, that only checks for accidental corruption: you can use signify (SHA256.sig and the public key telescope-0.5.pub) or GPG.  The hash of the signify public key is also included in the SHA256 file and signed with my GPG too.  The signify public key for the next release ‘telescope-0.6.pub’ is also included.
+
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/SHA256			SHA256
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/SHA256.gpg		SHA256.gpg
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/SHA256.sig		SHA256.sig
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.pub	telescope-0.5.pub
+=> https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.6.pub	telescope-0.6.pub
+
+```Example of how to verify the signature with signify
+$ signify -C -p telescope-0.5.2.pub -x SHA256.sig
+Signature Verified
+telescope-0.5.2-binaries.tar.gz: OK
+telescope-0.5.pub: OK
+telescope-0.5.2.tar.gz: OK
+telescope-0.6.pub: OK
+telescope.linux.aarch64: OK
+telescope.linux.amd64: OK
+```
+
+Finally, it’s possible to fetch the sources using git:
+
+=> //git.omarpolo.com/telescope/		git repository
+=> https://github.com/omar-polo/telescope	GitHub mirror
+
+
+## Changelog for the last versions
+
+0.5.2 “Le nuvole” bugfix release — Released September 13, 2021
+
+Bugfixes:
+* some very long pages can cause (rarely) telescope to render a blank page
+* allow creating files in ~/Downloads on OpenBSD
+* reset download byte counter
+
+----
+
+0.5.1 “Le nuvole” bugfix release — Released August 28, 2021
+
+Telescope used to trim the initial “/” in gopher requests: this is not correct and while some servers are forgiving, other (rightfully) aren't.
+
+----
+
+0.5 “Le nuvole” — Released August 27, 2021
+
+## New features
+
+* support for the finger protocol
+* support for the gopher protocol (only item types 0, 1 and 7 for the moment)
+* highlight diff/patches
+* typing the protocol of a URI is not needed anymore: added some heuristics to assume file:// URLs and fall back to gemini:// as default
+* open local files and directories
+* add an autosave timer to persist the session once in a while
+* scroll completions with M-v/C-v (mini-scroll-up/mini-scroll-down)
+* variable `tab-bar-show' controls the visibility of the tab bar
+
+## Improvements
+
+* new heuristics to extract a title for pages without headings: use the domain name or the "tilde username"
+* about:new updated with some gopher links too
+* reload doesn't push the current url to the history anymore
+* push-button-new-tab opens a new tab *right after* the current one, not as the last
+* improved the crash detection
+* M-[ and M-] are bind to tab-move-to/tab-move
+
+## Bug fixes
+
+* fixed some crashes caused by cursor movements on empty pages
+* correctly parse multiple attributes
blob - /dev/null
blob + ed4e009e600f65a7f9118cb69cacf129d965d751 (mode 644)
--- /dev/null
+++ site/index.html
@@ -0,0 +1,308 @@
+<!doctype html>
+<html lang="en">
+  <head>
+    <title>Telescope</title>
+    <meta charset="utf8">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <style>
+    body {
+      font-family: monospace;
+      font-size: 14px;
+      max-width: 780px;
+      margin: 0 auto;
+      padding: 20px;
+      padding-bottom: 80px;
+    }
+
+    h1::before {
+      content: "# ";
+    }
+
+    h2 {
+      margin-top: 40px;
+    }
+
+    h2::before {
+      content: "## ";
+    }
+
+    h3::before {
+      content: "### ";
+    }
+
+    blockquote {
+      margin: 0;
+      padding: 0;
+    }
+
+    blockquote::before {
+      content: "> ";
+    }
+
+    blockquote p {
+      font-style: italic;
+      display: inline;
+    }
+
+    p.link::before {
+      content: "→ ";
+    }
+
+    hr {
+      border: 0;
+      height: 1px;
+      background-color: #222;
+      width: 100%;
+      display: block;
+      margin: 2em auto;
+    }
+
+    pre {
+      overflow: auto;
+    }
+
+    pre.banner {
+      display: flex;
+      flex-direction: row;
+      justify-content: center;
+    }
+
+    code, kbd {
+      color: #9d109d;
+    }
+
+    img {
+      display: block;
+      margin: 0 auto;
+      max-width: 100%;
+    }
+
+    @media (prefers-color-scheme: dark) {
+      body {
+        background-color: #222;
+        color: white;
+      }
+
+      img {
+        filter: brightness(0.65);
+        transition: filter 0.2s ease-in-out;
+      }
+
+      img:hover {
+        filter: brightness(1.0);
+      }
+
+      a {
+        color: aqua;
+      }
+
+      hr {
+        background-color: #ddd;
+      }
+
+      code, kbd {
+        color: #ff4cff;
+      }
+    }
+
+    @media (max-width: 400px) {
+      pre.banner { font-size: 9px; }
+    }
+
+    @media (max-width: 500px) {
+      pre.banner { font-size: 10px; }
+    }
+    </style>
+  </head>
+  <body>
+    <header>
+      <nav>
+        Home | <a href="/gallery/">Gallery</a> | <a href="telescope.1.html">Docs</a>
+      </nav>
+    </header>
+    <pre class="banner"> _______         __
+|_     _|.-----.|  |.-----.-----.----.-----.-----.-----.
+  |   |  |  -__||  ||  -__|__ --|  __|  _  |  _  |  -__|
+  |___|  |_____||__||_____|_____|____|_____|   __|_____|
+                                           |__| v0.5.2</pre>
+    <blockquote>
+      <p>Telescope is a w3m-like browser for Gemini</p>
+    </blockquote>
+    <p>
+      Telescope is written entirely for fun, as a hobbystic project in
+      my free time.  As such, it lacks a ton of features you’ll find
+      in more mature Gemini browsers, but it also has some unique
+      ones.
+    </p>
+    <p>
+      The UI is strongly inspired from Emacs and W3M, so you’ll find
+      some familiar concepts, such as the minibuffer or the tabline,
+      and the default keybindigs also reflect this, but keys familiar
+      for vi and CUA users are also present by default.
+    </p>
+    <p>
+      <a href="https://asciinema.org/a/426862" target="_blank">
+        <img src="https://asciinema.org/a/426862.svg" />
+      </a>
+    </p>
+    <h2>Install</h2>
+    <p>Some distros provide a package — thanks to the maintainers!</p>
+    <a href="https://repology.org/project/telescope/versions">
+      <img src="https://repology.org/badge/vertical-allrepos/telescope.svg" alt="Packaging status">
+    </a>
+    <p>Source code and precompiled binaries for linux are available:</p>
+    <ul>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.2.tar.gz">
+          telescope-0.5.2.tar.gz
+        </a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope.linux.aarch64">
+          telescope.linux.aarch64
+        </a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope.linux.amd64">
+          telescope.linux.amd64
+        </a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.2-binaries.tar.gz">
+          telescope-0.5.2-binaries.tar.gz
+        </a>
+      </li>
+    </ul>
+    <p>
+      When in doubt, compile from source.  It’s easy and takes less
+      than a minute on a raspberry pi 3.  The dependencies are:
+    </p>
+    <ul>
+      <li>libncurses</li>
+      <li>libevent</li>
+      <li>libtls (from either LibreSSL or libretls)</li>
+      <li>yacc (or GNU bison)</li>
+    </ul>
+    <p>Once all the dependencies are installed, building is as easy as:</p>
+    <pre>$ curl -LO https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.2.tar.gz
+$ tar xzvf telescope-0.5.2.tar.gz
+$ cd telescope-0.5.2
+$ ./configure
+$ make
+$ sudo make install # eventually
+    </pre>
+    <p>
+      A SHA256 file containing the checksums is available.  However,
+      that only checks for accidental corruption: you can use signify
+      (<code>SHA256.sig</code> and the public key
+      <code>telescope-0.5.pub</code>) or GPG.  The hash of the signify
+      public key is also included in the SHA256 file and signed with
+      my GPG too. The signify public key for the next release
+      <code>telescope-0.6.pub</code> is also included.
+    </p>
+    <ul>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/SHA256">
+          SHA256
+        </a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/SHA256.gpg">
+          SHA256.gpg
+        </a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/SHA256.sig">
+          SHA256.sig
+        </a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.5.pub">
+          telescope-0.5.pub
+        </a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope/releases/download/0.5.2/telescope-0.6.pub">
+          telescope-0.6.pub
+        </a>
+      </li>
+    </ul>
+    <p>How to verify the signature with signify:</p>
+    <pre>$ signify -C -p telescope-0.5.pub -x SHA256.sig
+Signature Verified
+telescope-0.5.2-binaries.tar.gz: OK
+telescope-0.5.pub: OK
+telescope-0.5.2.tar.gz: OK
+telescope-0.6.pub: OK
+telescope.linux.aarch64: OK
+telescope.linux.amd64: OK
+    </pre>
+    <p>Finally, it’s possible to fetch the sources using git:</p>
+    <ul>
+      <li>
+        <a href="https://git.omarpolo.com/telescope/">git repository</a>
+      </li>
+      <li>
+        <a href="https://github.com/omar-polo/telescope">GitHub mirror</a>
+      </li>
+    </ul>
+    <h2>Changelog for the last versions</h2>
+    <p>0.5.2 “Le Nuvole” bugfix release — Released September 13, 2021</p>
+    <p>Bugfixes:</p>
+    <ul>
+      <li>
+        some very long pages can cause (rarely) telescope to render a
+        blank page
+      </li>
+      <li>allow creating files in <code>~/Downloads</code> on OpenBSD</li>
+      <li>reset download byte counter</li>
+    </ul>
+    <hr />
+    <p>0.5.1 “Le Nuvole” bugfix release — Released August 28, 2021</p>
+    <p>
+      Telescope used to trim the initial “/” in gopher requests: this
+      is not correct and while some servers are forgiving, other
+      (rightfully) aren't.
+    </p>
+    <hr />
+    <p>0.5 “Le Nuvole” — Released August 27, 2021</p>
+    <h3>New features</h3>
+    <ul>
+      <li>Support for the finger protocol</li>
+      <li>
+        Support for the gopher protocol (only item types 0, 1, and 7
+        for the moment)
+      </li>
+      <li>Highlight diff/patches</li>
+      <li>
+        Typing the protocol of a URI is not needed anymore: added some
+        heuristics to assume file:// URLs and fall back to gemini://
+        as default
+      </li>
+      <li>Open local files and directories</li>
+      <li>Add an autosave timer to persist the session once in a while</li>
+      <li>Scroll completions with M-v/C-v (mini-scroll-up/mini-scroll-down)</li>
+      <li>Variable `tab-bar-show' contrlos the visibility of the tab bar</li>
+    </ul>
+    <h3>Improvements</h3>
+    <ul>
+      <li>
+        New heuristics to extract a title for page without headings:
+        use the domain name or the "tilde username"
+      </li>
+      <li>About:new updated with some gopher links too</li>
+      <li>Reload doesn't push the current url to the history anymore</li>
+      <li>
+        Push-button-new-tab opens a new tab *right after* the current
+        one, not as the last
+      </li>
+      <li>Improved the crash detection</li>
+      <li>M-[ and M-] are bind to tab-move-to/tab-move</li>
+    </ul>
+    <h3>Bug fixes</h3>
+    <ul>
+      <li>Fixed some crashes caused by cursor movements on empty pages</li>
+      <li>Correctly parse multiple attributes</li>
+    </ul>
+  </body>
+</html>
blob - /dev/null
blob + 4cb718f9d31ec09d1bd023b5bd5aa3322e21f601 (mode 755)
--- /dev/null
+++ site/mdoc2html.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# usage: mdoc2html.sh src out
+#
+# converts the manpage `src' to the HTML file `out', tweaking the
+# style
+
+set -e
+
+: ${1:?missing input file}
+: ${2:?missing output file}
+
+man -Thtml -l "$1" > "$2"
+
+exec ed "$2" <<EOF
+/<style>
+a
+    body {
+        max-width: 960px;
+        margin: 0 auto;
+        padding: 0 10px;
+        font-size: 1rem;
+    }
+
+    pre {
+        overflow: auto;
+    }
+.
+wq
+EOF
blob - /dev/null
blob + cae9a4902742c1ab99e6774238fee59a77e451ac (mode 644)
--- /dev/null
+++ site/telescope.1.html
@@ -0,0 +1,928 @@
+<!DOCTYPE html>
+<html>
+<!-- This is an automatically generated file.  Do not edit.
+   Copyright (c) 2021 Omar Polo <op@omarpolo.com>
+  
+   Permission to use, copy, modify, and distribute this software for any
+   purpose with or without fee is hereby granted, provided that the above
+   copyright notice and this permission notice appear in all copies.
+  
+   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+   MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+   ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ -->
+<head>
+  <meta charset="utf-8"/>
+  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+  <style>
+  body {
+    max-width: 960px;
+    margin: 0 auto;
+    padding: 0 1rem;
+    font-family: monospace;
+    font-size: 1rem;
+  }
+  table.head, table.foot { width: 100%; }
+  td.head-rtitle, td.foot-os { text-align: right; }
+  td.head-vol { text-align: center; }
+  .Nd, .Bf, .Op { display: inline; }
+  .Pa, .Ad { font-style: italic; }
+  .Ms { font-weight: bold; }
+  .Bl-diag > dt { font-weight: bold; }
+  code.Nm, .Fl, .Cm, .Ic, code.In, .Fd, .Fn, .Cd { font-weight: bold;
+    font-family: inherit; }
+  </style>
+  <title>TELESCOPE(1)</title>
+</head>
+<body>
+<table class="head">
+  <tr>
+    <td class="head-ltitle">TELESCOPE(1)</td>
+    <td class="head-vol">General Commands Manual</td>
+    <td class="head-rtitle">TELESCOPE(1)</td>
+  </tr>
+</table>
+<div class="manual-text">
+<section class="Sh">
+<h1 class="Sh" id="NAME"><a class="permalink" href="#NAME">NAME</a></h1>
+<p class="Pp"><code class="Nm">telescope</code> &#x2014;
+    <span class="Nd">multi-protocol browser</span></p>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="SYNOPSIS"><a class="permalink" href="#SYNOPSIS">SYNOPSIS</a></h1>
+<table class="Nm">
+  <tr>
+    <td><code class="Nm">telescope</code></td>
+    <td>[<code class="Fl">-Chnv</code>]
+      [<code class="Fl">-c</code>&#x00A0;<span class="Pa">config</span>]
+      [<var class="Ar">URL</var>]</td>
+  </tr>
+</table>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="DESCRIPTION"><a class="permalink" href="#DESCRIPTION">DESCRIPTION</a></h1>
+<p class="Pp"><code class="Nm">telescope</code> is an interactive browser that
+    supports the Finger, Gemini and Gopher protocols.
+    <code class="Nm">telescope</code> features tabs, a minibuffer, interactive
+    completions, bookmarks and out-of-band TOFU verification.</p>
+<p class="Pp">The arguments are as follows:</p>
+<dl class="Bl-tag">
+  <dt id="C"><a class="permalink" href="#C"><code class="Fl">-C</code></a>,
+    <code class="Fl">--colors</code></dt>
+  <dd>Show all available colors and exit.</dd>
+  <dt id="c"><a class="permalink" href="#c"><code class="Fl">-c</code></a>
+    <span class="Pa">config</span></dt>
+  <dd>Specify an alternative configuration file. By default
+      <span class="Pa">$HOME/.telescope/config</span> is loaded.</dd>
+  <dt id="h"><a class="permalink" href="#h"><code class="Fl">-h</code></a>,
+    <code class="Fl">--help</code></dt>
+  <dd>Display version and usage.</dd>
+  <dt id="n"><a class="permalink" href="#n"><code class="Fl">-n</code></a></dt>
+  <dd>Configtest mode. Only check the configuration file for validity.</dd>
+  <dt id="v"><a class="permalink" href="#v"><code class="Fl">-v</code></a>,
+    <code class="Fl">--version</code></dt>
+  <dd>Display version.</dd>
+</dl>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="UI_CONCEPTS"><a class="permalink" href="#UI_CONCEPTS">UI
+  CONCEPTS</a></h1>
+<p class="Pp"><code class="Nm">telescope</code> interface is divided into four
+    areas: the tabline, the body, the modeline and the echoarea/minibuffer.</p>
+<p class="Pp">The tabline is always at the top of the screen and displays the
+    tabs separated by a vertical line. When there are more tabs than the size of
+    the window allow to display, the characters &#x2018;&lt;&#x2019; or
+    &#x2018;&gt;&#x2019; are shown at the start/end of the tabline to indicate
+    that there are more tabs in that direction.</p>
+<p class="Pp">The body occupies the majority of the visible area. It contains
+    the current page and optionally a side window.</p>
+<p class="Pp">The modeline is the second to last row of the screen. It shows
+    some information about the page: a spinner when the page is loading, the
+    trust level, the document type, the scroll offset and the URL.</p>
+<p class="Pp">The echoarea is usually the last line of the screen. Messages are
+    often showed there, and link addresses too. The echoarea is also used to
+    obtain input from the user. When commands like
+    <code class="Ic">swiper</code> or <code class="Ic">link-select</code> are
+    invoked, the minibuffer area grows to show possible completions.</p>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="TOFU"><a class="permalink" href="#TOFU">TOFU</a></h1>
+<p class="Pp"><code class="Nm">telescope</code> aims to use the &#x201C;Trust,
+    but Verify (where appropriate)&#x201D; approach for TOFU (&#x201C;Trust On
+    First Use&#x201D;). The idea is to define three level of verification for a
+    certificate:</p>
+<dl class="Bl-tag">
+  <dt>untrusted</dt>
+  <dd>(&#x2018;!&#x2019;) the server fingerprint does NOT match the stored
+      value.</dd>
+  <dt>trusted</dt>
+  <dd>(&#x2018;v&#x2019;) the server fingerprint matches the store one.</dd>
+  <dt>verified</dt>
+  <dd>(&#x2018;V&#x2019;) the fingerprint matches and has been verified
+      out-of-band.</dd>
+</dl>
+<p class="Pp">The trust level of the page is indicated in the modeline with the
+    indicated character.</p>
+<p class="Pp">Most of the time the &#x201C;trusted&#x201D; level is enough, but
+    where is appropriate users should be able to verify out-of-band the
+    certificate.</p>
+<p class="Pp">At the moment, there is no built-in support for an out-of-band
+    verification though.</p>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="SUPPORTED_PROTOCOLS"><a class="permalink" href="#SUPPORTED_PROTOCOLS">SUPPORTED
+  PROTOCOLS</a></h1>
+<p class="Pp">The following protocols are supported:</p>
+<dl class="Bl-tag">
+  <dt>about:</dt>
+  <dd>About pages are <code class="Nm">telescope</code> internal page. See
+      about:about for a list of all these pages.</dd>
+  <dt>file://</dt>
+  <dd>File types know to <code class="Nm">telescope</code>, such as .gmi,
+      .gemini, .txt, .md, .markdown, .diff or .patch, can be viewed inside the
+      application. Types of local files are detected solely based on the file
+      extension. On some systems, such as <span class="Ux">OpenBSD</span>, only
+      files inside special directories (like <span class="Pa">/tmp</span>
+      <span class="No">or</span> <span class="Pa">~/Downloads</span>) are
+      available.</dd>
+  <dt>finger://</dt>
+  <dd>Finger URLs are interpreted as follows:
+    <ul class="Bl-bullet Bl-compact">
+      <li>the host is determined by the host name portion of the URL</li>
+      <li>if the user portion of the URL is provided, it's interpreted as the
+          user to finger, otherwise the path component will be used</li>
+    </ul>
+    thus <a class="Lk" href="finger://user@hostname">finger://user@hostname</a>
+      and <a class="Lk" href="finger://hostname/user">finger://hostname/user</a>
+      are treated as the same URL.</dd>
+  <dt>gemini://</dt>
+  <dd>Gemini is fully supported, with the exception of client-certificates.</dd>
+  <dt>gopher://</dt>
+  <dd>Gopher support is limited to items type 0, 1 and 7. All text is assumed to
+      be encoded in UTF-8 (or ASCII).</dd>
+</dl>
+<p class="Pp">User-entered URLs, given as argument on the command line or
+    entered with <code class="Ic">load-url</code>, are intepreted with a simple
+    heuristic:</p>
+<ul class="Bl-bullet Bl-compact">
+  <li>if it's a proper absolute URL then use it as-is,</li>
+  <li>if it starts with &#x201C;./&#x201D; or &#x201C;/&#x201D; assume it's a
+      file:// URL,</li>
+  <li>otherwise assume it's a Gemini URL.</li>
+</ul>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="DEFAULT_KEY_BINDINGS"><a class="permalink" href="#DEFAULT_KEY_BINDINGS">DEFAULT
+  KEY BINDINGS</a></h1>
+<p class="Pp">The default key bindings are very similar to GNU Emacs, but care
+    has been taken to include also bindings familiar for <a class="Xr">vi(1)</a>
+    and &#x201C;CUA&#x201D; users. In the following examples, C-x means
+    Control-x, M-x means Meta-x, where the Meta key may be either a special key
+    on the keyboard or the ALT key; otherwise ESC followed by the key X works as
+    well, and C-M-x means to press the key X together with both Control and
+    Meta.</p>
+<p class="Pp">Keys are usually a single character, like &#x2018;p&#x2019; or
+    &#x2018;n&#x2019;, but some special keys are accepted as well.</p>
+<p class="Pp"></p>
+<div class="Bd-indent">
+<dl class="Bl-tag Bl-compact">
+  <dt>&lt;up&gt;</dt>
+  <dd>Up arrow</dd>
+  <dt>&lt;down&gt;</dt>
+  <dd>Down arrow</dd>
+  <dt>&lt;left&gt;</dt>
+  <dd>Left arrow</dd>
+  <dt>&lt;right&gt;</dt>
+  <dd>Right arrow</dd>
+  <dt>&lt;prior&gt;</dt>
+  <dd>Previous page/Page up</dd>
+  <dt>&lt;next&gt;</dt>
+  <dd>Next page/Page down</dd>
+  <dt>&lt;home&gt;</dt>
+  <dd>Home</dd>
+  <dt>&lt;end&gt;</dt>
+  <dd>End</dd>
+  <dt>&lt;f0&gt; thru &lt;f63&gt;</dt>
+  <dd>Function keys</dd>
+  <dt>del or backspace</dt>
+  <dd>Backspace</dd>
+  <dt>esc</dt>
+  <dd>Escape</dd>
+  <dt>space or spc</dt>
+  <dd>Space</dd>
+  <dt>enter or ret</dt>
+  <dd>Enter</dd>
+  <dt>tab</dt>
+  <dd>Tab</dd>
+  <dt>backtab</dt>
+  <dd>Depends on the configuration of the terminal emulator; usually shift
+    tab.</dd>
+</dl>
+</div>
+<section class="Ss">
+<h2 class="Ss" id="GNU_Emacs-like_keys"><a class="permalink" href="#GNU_Emacs-like_keys">GNU
+  Emacs-like keys</a></h2>
+<div class="Bd-indent">
+<dl class="Bl-tag Bl-compact">
+  <dt>C-p</dt>
+  <dd>previous-line</dd>
+  <dt>C-n</dt>
+  <dd>next-line</dd>
+  <dt>C-f</dt>
+  <dd>forward-char</dd>
+  <dt>C-b</dt>
+  <dd>backward-char</dd>
+  <dt>M-{</dt>
+  <dd>backward-paragraph</dd>
+  <dt>M-}</dt>
+  <dd>forward-paragraph</dd>
+  <dt>C-a</dt>
+  <dd>move-beginning-of-line</dd>
+  <dt>C-e</dt>
+  <dd>move-end-of-line</dd>
+  <dt>M-v, M-space</dt>
+  <dd>scroll-up</dd>
+  <dt>C-v, space</dt>
+  <dd>scroll-down</dd>
+  <dt>M-&lt;</dt>
+  <dd>beginning-of-buffer</dd>
+  <dt>M-&gt;</dt>
+  <dd>end-of-buffer</dd>
+  <dt>C-x C-c</dt>
+  <dd>kill-telescope</dd>
+  <dt>C-g</dt>
+  <dd>clear-minibuf</dd>
+  <dt>M-x</dt>
+  <dd>execute-extended-command</dd>
+  <dt>C-c {</dt>
+  <dd>dec-fill-column</dd>
+  <dt>C-c }</dt>
+  <dd>inc-fill-column</dd>
+  <dt>C-c p</dt>
+  <dd>previous-heading</dd>
+  <dt>C-c n</dt>
+  <dd>next-heading</dd>
+  <dt>&gt;</dt>
+  <dd>load-url</dd>
+  <dt>&lt;</dt>
+  <dd>load-current-url</dd>
+  <dt>C-x C-f</dt>
+  <dd>load-url</dd>
+  <dt>C-x M-f</dt>
+  <dd>load-current-url</dd>
+  <dt>C-x o</dt>
+  <dd>other-window</dd>
+  <dt>C-x t 0</dt>
+  <dd>tab-close</dd>
+  <dt>C-x t 1</dt>
+  <dd>tab-close-other</dd>
+  <dt>C-x t 2</dt>
+  <dd>tab-new</dd>
+  <dt>C-x t o</dt>
+  <dd>tab-next</dd>
+  <dt>C-x t O</dt>
+  <dd>tab-previous</dd>
+  <dt>C-x t m</dt>
+  <dd>tab-move</dd>
+  <dt>C-x t M</dt>
+  <dd>tab-move-to</dd>
+  <dt>B, C-M-b</dt>
+  <dd>previous-page</dd>
+  <dt>F, C-M-f</dt>
+  <dd>next-page</dd>
+  <dt>&lt;f7&gt; a</dt>
+  <dd>bookmark-page</dd>
+  <dt>&lt;f7&gt; &lt;f7&gt;</dt>
+  <dd>list-bookmarks</dd>
+  <dt>C-z</dt>
+  <dd>suspend-telescope</dd>
+</dl>
+</div>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="vi_1_-like_keys"><a class="permalink" href="#vi_1_-like_keys"><a class="Xr">vi(1)</a>-like
+  keys</a></h2>
+<div class="Bd-indent">
+<dl class="Bl-tag Bl-compact">
+  <dt>k</dt>
+  <dd>previous-line</dd>
+  <dt>j</dt>
+  <dd>next-line</dd>
+  <dt>l</dt>
+  <dd>forward-char</dd>
+  <dt>h</dt>
+  <dd>backward-char</dd>
+  <dt>{</dt>
+  <dd>backward-paragraph</dd>
+  <dt>}</dt>
+  <dd>forward-paragraph</dd>
+  <dt>^</dt>
+  <dd>move-beginning-of-line</dd>
+  <dt>$</dt>
+  <dd>move-end-of-line</dd>
+  <dt>K</dt>
+  <dd>scroll-line-up</dd>
+  <dt>J</dt>
+  <dd>scroll-line-down</dd>
+  <dt>g g</dt>
+  <dd>beginning-of-buffer</dd>
+  <dt>G</dt>
+  <dd>end-of-buffer</dd>
+  <dt>g D</dt>
+  <dd>tab-close</dd>
+  <dt>g N</dt>
+  <dd>tab-new</dd>
+  <dt>g t</dt>
+  <dd>tab-next</dd>
+  <dt>g T</dt>
+  <dd>tab-previous</dd>
+  <dt>g M-t</dt>
+  <dd>tab-move</dd>
+  <dt>g M-T</dt>
+  <dd>tab-move-to</dd>
+  <dt>H</dt>
+  <dd>previous-page</dd>
+  <dt>L</dt>
+  <dd>next-page</dd>
+  <dt>q</dt>
+  <dd>kill-telescope</dd>
+  <dt>ESC</dt>
+  <dd>clear-minibuf</dd>
+  <dt>:</dt>
+  <dd>execute-extended-command</dd>
+</dl>
+</div>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="CUA-like_keys"><a class="permalink" href="#CUA-like_keys">CUA-like
+  keys</a></h2>
+<div class="Bd-indent">
+<dl class="Bl-tag Bl-compact">
+  <dt>&lt;up&gt;</dt>
+  <dd>previous-line</dd>
+  <dt>&lt;down&gt;</dt>
+  <dd>next-line</dd>
+  <dt>&lt;right&gt;</dt>
+  <dd>forward-char</dd>
+  <dt>&lt;left&gt;</dt>
+  <dd>backward-char</dd>
+  <dt>&lt;home&gt;</dt>
+  <dd>move-beginning-of-line</dd>
+  <dt>&lt;end&gt;</dt>
+  <dd>move-end-of-line</dd>
+  <dt>&lt;prior&gt;</dt>
+  <dd>scroll-up</dd>
+  <dt>&lt;next&gt;</dt>
+  <dd>scroll-down</dd>
+  <dt>C-w</dt>
+  <dd>tab-close</dd>
+  <dt>C-t</dt>
+  <dd>tab-new</dd>
+  <dt>M-&lt;prior&gt;</dt>
+  <dd>tab-previous</dd>
+  <dt>M-&lt;next&gt;</dt>
+  <dd>tab-next</dd>
+  <dt>M-&lt;left&gt;</dt>
+  <dd>previous-page</dd>
+  <dt>M-&lt;right&gt;</dt>
+  <dd>next-page</dd>
+  <dt>&lt;f5&gt;</dt>
+  <dd>reload-page</dd>
+  <dt>r</dt>
+  <dd>reload-page</dd>
+</dl>
+</div>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="Neither_Emacs_nor_vi_specific"><a class="permalink" href="#Neither_Emacs_nor_vi_specific">Neither
+  Emacs nor vi specific</a></h2>
+<div class="Bd-indent">
+<dl class="Bl-tag Bl-compact">
+  <dt>&lt;f1&gt;</dt>
+  <dd>toggle-help</dd>
+  <dt>enter</dt>
+  <dd>push-button</dd>
+  <dt>M-enter</dt>
+  <dd>push-button-new-tab</dd>
+  <dt>M-tab</dt>
+  <dd>previous-button</dd>
+  <dt>backtab</dt>
+  <dd>previous-button</dd>
+  <dt>tab</dt>
+  <dd>next-button</dd>
+  <dt>M-t</dt>
+  <dd>tab-select</dd>
+  <dt>[</dt>
+  <dd>tab-previous</dd>
+  <dt>]</dt>
+  <dd>tab-next</dd>
+  <dt>M-[</dt>
+  <dd>tab-move-to</dd>
+  <dt>M-]</dt>
+  <dd>tab-move</dd>
+  <dt>M-l</dt>
+  <dd>link-select</dd>
+  <dt>M-/</dt>
+  <dd>swiper</dd>
+</dl>
+</div>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="Minibuffer-specific_keys"><a class="permalink" href="#Minibuffer-specific_keys">Minibuffer-specific
+  keys</a></h2>
+<div class="Bd-indent">
+<dl class="Bl-tag Bl-compact">
+  <dt>enter</dt>
+  <dd>mini-complete-and-exit</dd>
+  <dt>C-g</dt>
+  <dd>mini-abort</dd>
+  <dt>ESC</dt>
+  <dd>mini-abort</dd>
+  <dt>C-d</dt>
+  <dd>mini-delete-char</dd>
+  <dt>del</dt>
+  <dd>mini-delete-backward-char</dd>
+  <dt>backspace</dt>
+  <dd>mini-delete-backward-char</dd>
+  <dt>C-h</dt>
+  <dd>mini-delete-backward-char</dd>
+  <dt>C-b</dt>
+  <dd>backward-char</dd>
+  <dt>C-f</dt>
+  <dd>forward-char</dd>
+  <dt>&lt;left&gt;</dt>
+  <dd>backward-char</dd>
+  <dt>&lt;right&gt;</dt>
+  <dd>forward-char</dd>
+  <dt>C-e</dt>
+  <dd>move-end-of-line</dd>
+  <dt>C-a</dt>
+  <dd>move-beginning-of-line</dd>
+  <dt>&lt;end&gt;</dt>
+  <dd>move-end-of-line</dd>
+  <dt>&lt;home&gt;</dt>
+  <dd>move-beginning-of-line</dd>
+  <dt>C-k</dt>
+  <dd>mini-kill-line</dd>
+  <dt>M-p</dt>
+  <dd>mini-previous-history-element</dd>
+  <dt>M-n</dt>
+  <dd>mini-next-history-element</dd>
+  <dt>C-p</dt>
+  <dd>previous-completion</dd>
+  <dt>C-n</dt>
+  <dd>next-completion</dd>
+  <dt>&lt;up&gt;</dt>
+  <dd>previous-completion</dd>
+  <dt>&lt;down&gt;</dt>
+  <dd>next-completion</dd>
+  <dt>tab</dt>
+  <dd>insert-current-candidate</dd>
+  <dt>M-&lt;</dt>
+  <dd>mini-goto-beginning</dd>
+  <dt>M-&gt;</dt>
+  <dd>mini-goto-end</dd>
+</dl>
+</div>
+</section>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="INTERACTIVE_COMMANDS"><a class="permalink" href="#INTERACTIVE_COMMANDS">INTERACTIVE
+  COMMANDS</a></h1>
+<p class="Pp">Follows the documentation for the interactive commands. These
+    commands can be bound to a key or executed with
+    <code class="Ic">execute-extended-command</code>.</p>
+<section class="Ss">
+<h2 class="Ss" id="Movement_commands"><a class="permalink" href="#Movement_commands">Movement
+  commands</a></h2>
+<dl class="Bl-tag Bl-compact">
+  <dt id="backward-char"><a class="permalink" href="#backward-char"><code class="Ic">backward-char</code></a></dt>
+  <dd>Move point one character backward.</dd>
+  <dt id="backward-paragraph"><a class="permalink" href="#backward-paragraph"><code class="Ic">backward-paragraph</code></a></dt>
+  <dd>Move point one paragraph backward.</dd>
+  <dt id="beginning-of-buffer"><a class="permalink" href="#beginning-of-buffer"><code class="Ic">beginning-of-buffer</code></a></dt>
+  <dd>Move point to the beginning of the buffer.</dd>
+  <dt id="end-of-buffer"><a class="permalink" href="#end-of-buffer"><code class="Ic">end-of-buffer</code></a></dt>
+  <dd>Move point to the end of the buffer.</dd>
+  <dt id="forward-char"><a class="permalink" href="#forward-char"><code class="Ic">forward-char</code></a></dt>
+  <dd>Move point one character forward.</dd>
+  <dt id="forward-paragraph"><a class="permalink" href="#forward-paragraph"><code class="Ic">forward-paragraph</code></a></dt>
+  <dd>Move point one paragraph forward.</dd>
+  <dt id="insert-current-candidate"><a class="permalink" href="#insert-current-candidate"><code class="Ic">insert-current-candidate</code></a></dt>
+  <dd>Copy the current selection text as minibuffer input.</dd>
+  <dt id="move-beginning-of-line"><a class="permalink" href="#move-beginning-of-line"><code class="Ic">move-beginning-of-line</code></a></dt>
+  <dd>Move point at the beginning of the current (visual) line.</dd>
+  <dt id="move-end-of-line"><a class="permalink" href="#move-end-of-line"><code class="Ic">move-end-of-line</code></a></dt>
+  <dd>Move point at the end of the current (visual) line.</dd>
+  <dt id="next-button"><a class="permalink" href="#next-button"><code class="Ic">next-button</code></a></dt>
+  <dd>Move point to the next link.</dd>
+  <dt id="next-completion"><a class="permalink" href="#next-completion"><code class="Ic">next-completion</code></a></dt>
+  <dd>Select the next completion.</dd>
+  <dt id="next-heading"><a class="permalink" href="#next-heading"><code class="Ic">next-heading</code></a></dt>
+  <dd>Move point to the next heading.</dd>
+  <dt id="next-line"><a class="permalink" href="#next-line"><code class="Ic">next-line</code></a></dt>
+  <dd>Move point to the next (visual) line, in the same column if possible.</dd>
+  <dt id="previous-button"><a class="permalink" href="#previous-button"><code class="Ic">previous-button</code></a></dt>
+  <dd>Move point to the previous link.</dd>
+  <dt id="previous-completion"><a class="permalink" href="#previous-completion"><code class="Ic">previous-completion</code></a></dt>
+  <dd>Select the previous completion.</dd>
+  <dt id="previous-heading"><a class="permalink" href="#previous-heading"><code class="Ic">previous-heading</code></a></dt>
+  <dd>Move point to the previous heading.</dd>
+  <dt id="previous-line"><a class="permalink" href="#previous-line"><code class="Ic">previous-line</code></a></dt>
+  <dd>Move point to the previous (visual) line.</dd>
+</dl>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="Bookmark-related_commands"><a class="permalink" href="#Bookmark-related_commands">Bookmark-related
+  commands</a></h2>
+<dl class="Bl-tag Bl-compact">
+  <dt id="bookmark-page"><a class="permalink" href="#bookmark-page"><code class="Ic">bookmark-page</code></a></dt>
+  <dd>Save a page in the bookmark file. It preloads the minibuffer with the
+      current URL.</dd>
+  <dt id="list-bookmarks"><a class="permalink" href="#list-bookmarks"><code class="Ic">list-bookmarks</code></a></dt>
+  <dd>Load the bookmarks page.</dd>
+</dl>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="Tab-related_commands"><a class="permalink" href="#Tab-related_commands">Tab-related
+  commands</a></h2>
+<dl class="Bl-tag Bl-compact">
+  <dt id="tab-close"><a class="permalink" href="#tab-close"><code class="Ic">tab-close</code></a></dt>
+  <dd>Close the current tab.</dd>
+  <dt id="tab-close-other"><a class="permalink" href="#tab-close-other"><code class="Ic">tab-close-other</code></a></dt>
+  <dd>Close all tabs but the current one.</dd>
+  <dt id="tab-move"><a class="permalink" href="#tab-move"><code class="Ic">tab-move</code></a></dt>
+  <dd>Move the current tab after the next one, wrapping around if needed.</dd>
+  <dt id="tab-move-to"><a class="permalink" href="#tab-move-to"><code class="Ic">tab-move-to</code></a></dt>
+  <dd>Move the current tab before the previous one, wrapping around if
+    needed.</dd>
+  <dt id="tab-new"><a class="permalink" href="#tab-new"><code class="Ic">tab-new</code></a></dt>
+  <dd>Open a new tab.</dd>
+  <dt id="tab-next"><a class="permalink" href="#tab-next"><code class="Ic">tab-next</code></a></dt>
+  <dd>Focus next tab, wrapping around eventually.</dd>
+  <dt id="tab-previous"><a class="permalink" href="#tab-previous"><code class="Ic">tab-previous</code></a></dt>
+  <dd>Focus the previous tab, wrapping around eventually.</dd>
+  <dt id="tab-select"><a class="permalink" href="#tab-select"><code class="Ic">tab-select</code></a></dt>
+  <dd>Switch to a tab using the minibuffer.</dd>
+</dl>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="Misc_commands"><a class="permalink" href="#Misc_commands">Misc
+  commands</a></h2>
+<dl class="Bl-tag Bl-compact">
+  <dt id="clear-minibuf"><a class="permalink" href="#clear-minibuf"><code class="Ic">clear-minibuf</code></a></dt>
+  <dd>Clear the echo area.</dd>
+  <dt id="dec-fill-column"><a class="permalink" href="#dec-fill-column"><code class="Ic">dec-fill-column</code></a></dt>
+  <dd>Decrement fill-column by two.</dd>
+  <dt id="execute-extended-command"><a class="permalink" href="#execute-extended-command"><code class="Ic">execute-extended-command</code></a></dt>
+  <dd>Execute an internal command.</dd>
+  <dt id="kill-telescope"><a class="permalink" href="#kill-telescope"><code class="Ic">kill-telescope</code></a></dt>
+  <dd>Quit <code class="Nm">telescope</code>.</dd>
+  <dt id="inc-fill-column"><a class="permalink" href="#inc-fill-column"><code class="Ic">inc-fill-column</code></a></dt>
+  <dd>Increment fill-column by two.</dd>
+  <dt id="link-select"><a class="permalink" href="#link-select"><code class="Ic">link-select</code></a></dt>
+  <dd>Select and visit a link using the minibuffer.</dd>
+  <dt id="load-current-url"><a class="permalink" href="#load-current-url"><code class="Ic">load-current-url</code></a></dt>
+  <dd>Edit the current URL.</dd>
+  <dt id="load-url"><a class="permalink" href="#load-url"><code class="Ic">load-url</code></a></dt>
+  <dd>Prompt for an URL.</dd>
+  <dt id="next-page"><a class="permalink" href="#next-page"><code class="Ic">next-page</code></a></dt>
+  <dd>Go forward in the page history.</dd>
+  <dt id="olivetti-mode"><a class="permalink" href="#olivetti-mode"><code class="Ic">olivetti-mode</code></a></dt>
+  <dd>Toggle olivetti mode (i.e. horizontal centering of the lines of the
+      window.)</dd>
+  <dt id="other-window"><a class="permalink" href="#other-window"><code class="Ic">other-window</code></a></dt>
+  <dd>Select the other window.</dd>
+  <dt id="previous-page"><a class="permalink" href="#previous-page"><code class="Ic">previous-page</code></a></dt>
+  <dd>Go backward in the page history.</dd>
+  <dt id="push-button"><a class="permalink" href="#push-button"><code class="Ic">push-button</code></a></dt>
+  <dd>Follow link at point, or toggle the visibility of the following
+      preformatted block if called when the cursor is on the heading of the
+      block.</dd>
+  <dt id="push-button-new-tab"><a class="permalink" href="#push-button-new-tab"><code class="Ic">push-button-new-tab</code></a></dt>
+  <dd>Follow link at point in a new tab.</dd>
+  <dt id="redraw"><a class="permalink" href="#redraw"><code class="Ic">redraw</code></a></dt>
+  <dd>Redraw the screen, useful if some background program messed up the
+      display.</dd>
+  <dt id="reload-page"><a class="permalink" href="#reload-page"><code class="Ic">reload-page</code></a></dt>
+  <dd>Reload the current page.</dd>
+  <dt id="scroll-down"><a class="permalink" href="#scroll-down"><code class="Ic">scroll-down</code></a></dt>
+  <dd>Scroll down by one visual page.</dd>
+  <dt id="scroll-line-down"><a class="permalink" href="#scroll-line-down"><code class="Ic">scroll-line-down</code></a></dt>
+  <dd>Scroll down by one line.</dd>
+  <dt id="scroll-line-up"><a class="permalink" href="#scroll-line-up"><code class="Ic">scroll-line-up</code></a></dt>
+  <dd>Scroll up by one line.</dd>
+  <dt id="scroll-up"><a class="permalink" href="#scroll-up"><code class="Ic">scroll-up</code></a></dt>
+  <dd>Scroll up by one visual page.</dd>
+  <dt id="suspend-telescope"><a class="permalink" href="#suspend-telescope"><code class="Ic">suspend-telescope</code></a></dt>
+  <dd>Suspend the current <code class="Nm">telescope</code> session.</dd>
+  <dt id="swiper"><a class="permalink" href="#swiper"><code class="Ic">swiper</code></a></dt>
+  <dd>Jump to a line using the minibuffer.</dd>
+  <dt id="toc"><a class="permalink" href="#toc"><code class="Ic">toc</code></a></dt>
+  <dd>Jump to a heading using the minibuffer.</dd>
+  <dt id="toggle-help"><a class="permalink" href="#toggle-help"><code class="Ic">toggle-help</code></a></dt>
+  <dd>Toggle side window with help about available keys and their associated
+      interactive command.</dd>
+  <dt id="toggle-pre-wrap"><a class="permalink" href="#toggle-pre-wrap"><code class="Ic">toggle-pre-wrap</code></a></dt>
+  <dd>Toggle the wrapping of preformatted blocks.</dd>
+</dl>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="Minibuffer_commands"><a class="permalink" href="#Minibuffer_commands">Minibuffer
+  commands</a></h2>
+<dl class="Bl-tag Bl-compact">
+  <dt id="mini-abort"><a class="permalink" href="#mini-abort"><code class="Ic">mini-abort</code></a></dt>
+  <dd>Abort the current minibuffer action.</dd>
+  <dt id="mini-complete-and-exit"><a class="permalink" href="#mini-complete-and-exit"><code class="Ic">mini-complete-and-exit</code></a></dt>
+  <dd>Complete the current minibuffer action.</dd>
+  <dt id="mini-delete-backward-char"><a class="permalink" href="#mini-delete-backward-char"><code class="Ic">mini-delete-backward-char</code></a></dt>
+  <dd>Delete the character before the point.</dd>
+  <dt id="mini-delete-char"><a class="permalink" href="#mini-delete-char"><code class="Ic">mini-delete-char</code></a></dt>
+  <dd>Delete the character after the point.</dd>
+  <dt id="mini-goto-beginning"><a class="permalink" href="#mini-goto-beginning"><code class="Ic">mini-goto-beginning</code></a></dt>
+  <dd>Select the first completion, if any.</dd>
+  <dt id="mini-goto-end"><a class="permalink" href="#mini-goto-end"><code class="Ic">mini-goto-end</code></a></dt>
+  <dd>Select the last completion, if any.</dd>
+  <dt id="mini-kill-line"><a class="permalink" href="#mini-kill-line"><code class="Ic">mini-kill-line</code></a></dt>
+  <dd>Delete from point until the end of the line.</dd>
+  <dt id="mini-next-history-element"><a class="permalink" href="#mini-next-history-element"><code class="Ic">mini-next-history-element</code></a></dt>
+  <dd>Load the previous history element.</dd>
+  <dt id="mini-previous-history-element"><a class="permalink" href="#mini-previous-history-element"><code class="Ic">mini-previous-history-element</code></a></dt>
+  <dd>Load the next history element.</dd>
+</dl>
+</section>
+<section class="Ss">
+<h2 class="Ss" id="Aliases"><a class="permalink" href="#Aliases">Aliases</a></h2>
+<p class="Pp">The following aliases are available during
+    <code class="Ic">execute-extended-command</code>:</p>
+<dl class="Bl-tag Bl-compact">
+  <dt id="tabn"><a class="permalink" href="#tabn"><code class="Ic">tabn</code></a></dt>
+  <dd><a class="permalink" href="#tab-next~2"><code class="Ic" id="tab-next~2">tab-next</code></a></dd>
+  <dt id="tabnew"><a class="permalink" href="#tabnew"><code class="Ic">tabnew</code></a></dt>
+  <dd><a class="permalink" href="#tab-new~2"><code class="Ic" id="tab-new~2">tab-new</code></a></dd>
+  <dt id="tabp"><a class="permalink" href="#tabp"><code class="Ic">tabp</code></a></dt>
+  <dd><a class="permalink" href="#tab-previous~2"><code class="Ic" id="tab-previous~2">tab-previous</code></a></dd>
+  <dt id="q"><a class="permalink" href="#q"><code class="Ic">q</code></a>
+    <span class="No">and</span> <code class="Ic">wq</code></dt>
+  <dd><a class="permalink" href="#kill-telescope~2"><code class="Ic" id="kill-telescope~2">kill-telescope</code></a></dd>
+</dl>
+</section>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="CONFIGURATION_FILE"><a class="permalink" href="#CONFIGURATION_FILE">CONFIGURATION
+  FILE</a></h1>
+<p class="Pp">During the startup, <code class="Nm">telescope</code> reads the
+    configuration file at <span class="Pa">~/.telescope/config</span> or the one
+    given with the <code class="Fl">-c</code> flag.</p>
+<p class="Pp"><code class="Nm">telescope</code> will also load a file called
+    <span class="Pa">config-TERM</span>, where &#x201C;TERM&#x201D; is the name
+    of the terminal type (i.e. the TERM environment variable), if it exists.</p>
+<p class="Pp">The format of the configuration file is fairly flexible. The
+    current line can be extended over multiple ones using a backslash
+    (&#x2018;\&#x2019;). Comments can be put anywhere in the file using a hash
+    mark (&#x2018;#&#x2019;), and extend to the end of the current line, but
+    backslashes can't be used to extend comments over multiple lines.</p>
+<p class="Pp">The following constructs are available:</p>
+<dl class="Bl-tag">
+  <dt id="bind"><a class="permalink" href="#bind"><code class="Ic">bind</code></a>
+    <var class="Ar">map</var> <var class="Ar">key</var>
+    <var class="Ar">cmd</var></dt>
+  <dd>Bind <var class="Ar">key</var> to the function <var class="Ar">cmd</var>
+      in the keymap <var class="Ar">map</var>. Valid values for map are
+      &#x201C;global-map&#x201D; (i.e. when the user is viewing a page) and
+      &#x201C;minibuffer-map&#x201D; (i.e. when the minibuffer has the focus.)
+      <var class="Ar">key</var> follows the same syntax described in
+      <a class="Sx" href="#DEFAULT_KEY_BINDINGS">DEFAULT KEY BINDINGS</a> and
+      all the possible functions are listed in
+      <a class="Sx" href="#INTERACTIVE_COMMANDS">INTERACTIVE COMMANDS</a>.</dd>
+  <dt id="proxy"><a class="permalink" href="#proxy"><code class="Ic">proxy</code></a>
+    <var class="Ar">proto</var> <code class="Ic">via</code>
+    <var class="Ar">url</var></dt>
+  <dd>Use <var class="Ar">url</var> as proxy for all URLs with protocol
+      <var class="Ar">proto</var>. <var class="Ar">url</var> must be a Gemini
+      URI without path, query and fragment component.</dd>
+  <dt id="set"><a class="permalink" href="#set"><code class="Ic">set</code></a>
+    <var class="Ar">opt</var> <span class="No">=</span>
+    <var class="Ar">val</var></dt>
+  <dd>Set the option <var class="Ar">opt</var> to the value
+      <var class="Ar">val</var>. Valid options are:
+    <p class="Pp"></p>
+    <dl class="Bl-tag Bl-compact">
+      <dt>autosave</dt>
+      <dd>(integer) If greater than zero, save the session after the specified
+          amount of seconds after some events happens (new or closed tabs,
+          visited a link ...) Defaults to 20.</dd>
+      <dt>dont-wrap-pre</dt>
+      <dd>(integer) If nonzero, don't wrap preformatted blocks. Defaults to
+        0.</dd>
+      <dt>emojify-link</dt>
+      <dd>(integer) If nonzero, when the text of a link starts with an emoji
+          followed by a space, use that emoji as line prefix. Defaults to
+        1.</dd>
+      <dt>enable-colors</dt>
+      <dd>(integer) If nonzero, enable colours. Defaults to 0 if
+          <code class="Ev">NO_COLORS</code> is set, 1 otherwise.</dd>
+      <dt>fill-column</dt>
+      <dd>(integer) If greater than zero, lines of text will be formatted in a
+          way that don't exceed the given number of columns. Defaults to
+        80.</dd>
+      <dt>hide-pre-blocks</dt>
+      <dd>(integer) If nonzero, hide by default the body of the preformatted
+          blocks. Defaults to zero. <code class="Ic">push-button</code> can be
+          used to toggle the visibility per-block.</dd>
+      <dt>hide-pre-closing-line</dt>
+      <dd>(integer) If nonzero, hide the closing line of preformatted blocks.
+          Defaults to 0.</dd>
+      <dt>hide-pre-context</dt>
+      <dd>(integer) If nonzero, hide the start and end line of the preformatted
+          blocks. If both hide-pre-context and hide-pre-blocks are nonzero,
+          preformatted blocks are irremediably hidden. Defaults to zero.</dd>
+      <dt>new-tab-url</dt>
+      <dd>(string) URL for the new tab page. Defaults to
+          &#x201C;about:new&#x201D;.</dd>
+      <dt>olivetti-mode</dt>
+      <dd>(integer) If nonzero, enable <code class="Ic">olivetti-mode</code>
+          Defaults to 1.</dd>
+      <dt>set-title</dt>
+      <dd>(integer) If nonzero, set the terminal title to the page title.
+          Defaults to 1.</dd>
+      <dt>tab-bar-show</dt>
+      <dd>(integer) If tab-bar-show is -1 hide the tab bar permanently, if 0
+          show it unconditionally. If it's 1, show the bar only when there is
+          more than one tab. Defaults to 1.</dd>
+    </dl>
+  </dd>
+  <dt id="style"><a class="permalink" href="#style"><code class="Ic">style</code></a>
+    <var class="Ar">name</var> <var class="Ar">option</var></dt>
+  <dd>Change the styling of the element identified by
+      <var class="Ar">name</var>. Multiple options may be specified within curly
+      braces. Valid style identifiers are:
+    <div class="Bd-indent">
+    <dl class="Bl-tag Bl-compact">
+      <dt>line</dt>
+      <dd>the area outside the lines in the body of the page.</dd>
+      <dt>line.compl</dt>
+      <dd>the completions.</dd>
+      <dt>line.compl.current</dt>
+      <dd>the current completion.</dd>
+      <dt>line.help</dt>
+      <dd>text in the *Help* buffer.</dd>
+      <dt>line.text</dt>
+      <dd>text lines.</dd>
+      <dt>line.link</dt>
+      <dd>link lines.</dd>
+      <dt>line.title1..3</dt>
+      <dd>headings</dd>
+      <dt>line.item</dt>
+      <dd>item lines.</dd>
+      <dt>line.quote</dt>
+      <dd>quotes.</dd>
+      <dt>line.pre.start</dt>
+      <dd>the heading of a preformatted block.</dd>
+      <dt>line.pre</dt>
+      <dd>the content of a preformatted block.</dd>
+      <dt>line.pre.end</dt>
+      <dd>the closing line of a preformatted block.</dd>
+      <dt>minibuffer</dt>
+      <dd>the minibuffer.</dd>
+      <dt>modeline</dt>
+      <dd>the modeline.</dd>
+      <dt>tabline</dt>
+      <dd>the tabline.</dd>
+      <dt>tabline.tab</dt>
+      <dd>the non-focused tabs.</dd>
+      <dt>tabline.current</dt>
+      <dd>the focused tab.</dd>
+    </dl>
+    </div>
+    <p class="Pp">Valid options are:</p>
+    <dl class="Bl-tag">
+      <dt id="attr"><a class="permalink" href="#attr"><code class="Ic">attr</code></a>
+        <var class="Ar">prefix</var> [<var class="Ar">line</var>
+        [<var class="Ar">trail</var>]]</dt>
+      <dd>Sets the text attributes. If only one value is given,
+          <var class="Ar">line</var> and <var class="Ar">trail</var> default to
+          that; if two values are given then <var class="Ar">trail</var>
+          defaults to <var class="Ar">prefix</var>. Each attribute is a
+          comma-separated list of keywords:
+        <div class="Bd-indent">
+        <dl class="Bl-tag Bl-compact">
+          <dt id="normal"><a class="permalink" href="#normal"><code class="Ic">normal</code></a></dt>
+          <dd>no attributes.</dd>
+          <dt id="standout"><a class="permalink" href="#standout"><code class="Ic">standout</code></a></dt>
+          <dd>best highlighting mode for the terminal.</dd>
+          <dt id="underline"><a class="permalink" href="#underline"><code class="Ic">underline</code></a></dt>
+          <dd>underlines the text.</dd>
+          <dt id="reverse"><a class="permalink" href="#reverse"><code class="Ic">reverse</code></a></dt>
+          <dd>reverses background/foreground colors.</dd>
+          <dt id="blink"><a class="permalink" href="#blink"><code class="Ic">blink</code></a></dt>
+          <dd>makes the text blinking.</dd>
+          <dt id="dim"><a class="permalink" href="#dim"><code class="Ic">dim</code></a></dt>
+          <dd>half bright.</dd>
+          <dt id="bold"><a class="permalink" href="#bold"><code class="Ic">bold</code></a></dt>
+          <dd>extra bright or bold.</dd>
+        </dl>
+        </div>
+        <p class="Pp">Only the style identifiers with the &#x201C;line.&#x201D;
+            prefix accept up to three attributes. The other will only use the
+            first one given.</p>
+      </dd>
+      <dt id="bg"><a class="permalink" href="#bg"><code class="Ic">bg</code></a>
+        <var class="Ar">prefix</var> [<var class="Ar">line</var>
+        [<var class="Ar">trail</var>]]</dt>
+      <dd>Sets the background color. Follows the same behaviour as
+          <code class="Ic">attr</code> regarding the optional parameters. The
+          colour is one of black, red, green, yellow, blue, magenta, cyan and
+          white; colour0 to colour255 (or color0 to color255) from the
+          256-colour set; default for the default colour.</dd>
+      <dt id="fg"><a class="permalink" href="#fg"><code class="Ic">fg</code></a>
+        <var class="Ar">prefix</var> [<var class="Ar">line</var>
+        [<var class="Ar">trail</var>]]</dt>
+      <dd>Sets the foreground color. It behaves just like
+          <code class="Ic">bg</code>.</dd>
+      <dt id="prefix"><a class="permalink" href="#prefix"><code class="Ic">prefix</code></a>
+        <var class="Ar">prfx</var> [<var class="Ar">cont</var>]</dt>
+      <dd>Sets the prefix for the current line type to
+          <var class="Ar">prfx</var> and <var class="Ar">cont</var> as the
+          prefix for the continuation lines (i.e. when a long line gets
+          wrapped.) If <var class="Ar">cont</var> is not given its value will be
+          the same of <var class="Ar">prfx</var>.</dd>
+    </dl>
+  </dd>
+</dl>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="ENVIRONMENT"><a class="permalink" href="#ENVIRONMENT">ENVIRONMENT</a></h1>
+<p class="Pp">When <code class="Nm">telescope</code> is started, it inspects the
+    following environment variables:</p>
+<dl class="Bl-tag">
+  <dt id="HOME"><a class="permalink" href="#HOME"><code class="Ev">HOME</code></a></dt>
+  <dd>The user's login directory.</dd>
+  <dt id="NO_COLORS"><a class="permalink" href="#NO_COLORS"><code class="Ev">NO_COLORS</code></a></dt>
+  <dd>To decide whether to use colors or not. The content of the variable
+      doesn't matter.</dd>
+  <dt id="TERM"><a class="permalink" href="#TERM"><code class="Ev">TERM</code></a></dt>
+  <dd>The user's terminal name.</dd>
+</dl>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="FILES"><a class="permalink" href="#FILES">FILES</a></h1>
+<dl class="Bl-tag Bl-compact">
+  <dt><span class="Pa">~/.telescope/bookmarks.gmi</span></dt>
+  <dd>Bookmarks file.</dd>
+  <dt><span class="Pa">~/.telescope/config</span></dt>
+  <dd>Default configuration file.</dd>
+  <dt><span class="Pa">~/.telescope/known_hosts</span></dt>
+  <dd>Hash of the certificates for all the known hosts. Each line contains three
+      fields: hostname with optional port number, hash of the certificate and a
+      numeric flag.</dd>
+  <dt><span class="Pa">~/.telescope/lock</span></dt>
+  <dd>Lock file used to prevent multiple instance of
+      <code class="Nm">telescope</code> from running at the same time.</dd>
+  <dt><span class="Pa">~/.telescope/pages/about_*.gmi</span></dt>
+  <dd>Overrides for built-in about: pages.</dd>
+  <dt><span class="Pa">~/.telescope/session</span></dt>
+  <dd>The list of tabs from the last session. Every line identifies a tab and
+      contains three space-separated fields: the full URL, a comma-separated
+      list of attributes and the cached title. Is written by
+      <code class="Ic">kill-telescope</code> and loaded during startup.</dd>
+</dl>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="EXAMPLES"><a class="permalink" href="#EXAMPLES">EXAMPLES</a></h1>
+<p class="Pp">It's possible to browse &#x201C;the small web&#x201D; (i.e. simple
+    websites) by using programs like the duckling-proxy by defining a proxy in
+    <span class="Pa">~/.telescope/config</span>:</p>
+<div class="Bd Pp Bd-indent Li">
+<pre>proxy http via &quot;gemini://127.0.0.1:1965&quot;
+proxy https via &quot;gemini://127.0.0.1:1965&quot;</pre>
+</div>
+<p class="Pp">To load <code class="Nm">telescope</code> without any
+    configuration</p>
+<div class="Bd Pp Bd-indent Li">
+<pre>telescope -c /dev/null</pre>
+</div>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="AUTHORS"><a class="permalink" href="#AUTHORS">AUTHORS</a></h1>
+<p class="Pp">The <code class="Nm">telescope</code> program was written by
+    <span class="An">Omar Polo</span>
+    &lt;<a class="Mt" href="mailto:op@omarpolo.com">op@omarpolo.com</a>&gt;.</p>
+</section>
+<section class="Sh">
+<h1 class="Sh" id="BUGS"><a class="permalink" href="#BUGS">BUGS</a></h1>
+<p class="Pp">There's no UI for out-of-band certificates validation.</p>
+</section>
+</div>
+<table class="foot">
+  <tr>
+    <td class="foot-date">August 27, 2021</td>
+    <td class="foot-os">OpenBSD 7.0</td>
+  </tr>
+</table>
+</body>
+</html>
blob - /dev/null
blob + 1457102e0e3ae6800cd2e8eae69da256ad757397 (mode 644)
--- /dev/null
+++ site/telescope.1.txt
@@ -0,0 +1,531 @@
+TELESCOPE(1)		    General Commands Manual		  TELESCOPE(1)
+
+NAME
+     telescope	multi-protocol browser
+
+SYNOPSIS
+     telescope [-Chnv] [-c config] [URL]
+
+DESCRIPTION
+     telescope is an interactive browser that supports the Finger, Gemini and
+     Gopher protocols.	telescope features tabs, a minibuffer, interactive
+     completions, bookmarks and out-of-band TOFU verification.
+
+     The arguments are as follows:
+
+     -C, --colors   Show all available colors and exit.
+
+     -c config	    Specify an alternative configuration file.	By default
+		    $HOME/.telescope/config is loaded.
+
+     -h, --help	    Display version and usage.
+
+     -n		    Configtest mode.  Only check the configuration file for
+		    validity.
+
+     -v, --version  Display version.
+
+UI CONCEPTS
+     telescope interface is divided into four areas: the tabline, the body,
+     the modeline and the echoarea/minibuffer.
+
+     The tabline is always at the top of the screen and displays the tabs
+     separated by a vertical line.  When there are more tabs than the size of
+     the window allow to display, the characters < or > are shown at the
+     start/end of the tabline to indicate that there are more tabs in that
+     direction.
+
+     The body occupies the majority of the visible area.  It contains the
+     current page and optionally a side window.
+
+     The modeline is the second to last row of the screen.  It shows some
+     information about the page: a spinner when the page is loading, the trust
+     level, the document type, the scroll offset and the URL.
+
+     The echoarea is usually the last line of the screen.  Messages are often
+     showed there, and link addresses too.  The echoarea is also used to
+     obtain input from the user.  When commands like swiper or link-select are
+     invoked, the minibuffer area grows to show possible completions.
+
+TOFU
+     telescope aims to use the Trust, but Verify (where appropriate)
+     approach for TOFU (Trust On First Use).  The idea is to define three
+     level of verification for a certificate:
+
+     untrusted	   (!) the server fingerprint does NOT match the stored
+		   value.
+
+     trusted	   (v) the server fingerprint matches the store one.
+
+     verified	   (V) the fingerprint matches and has been verified out-of-
+		   band.
+
+     The trust level of the page is indicated in the modeline with the
+     indicated character.
+
+     Most of the time the trusted level is enough, but where is appropriate
+     users should be able to verify out-of-band the certificate.
+
+     At the moment, there is no built-in support for an out-of-band
+     verification though.
+
+SUPPORTED PROTOCOLS
+     The following protocols are supported:
+
+     about:	About pages are telescope internal page.  See about:about for
+		a list of all these pages.
+
+     file://	File types know to telescope, such as .gmi, .gemini, .txt,
+		.md, .markdown, .diff or .patch, can be viewed inside the
+		application.  Types of local files are detected solely based
+		on the file extension.	On some systems, such as OpenBSD, only
+		files inside special directories (like /tmp or ~/Downloads)
+		are available.
+
+     finger://	Finger URLs are interpreted as follows:
+		  the host is determined by the host name portion of the URL
+		  if the user portion of the URL is provided, it's
+		    interpreted as the user to finger, otherwise the path
+		    component will be used
+		thus finger://user@hostname and finger://hostname/user are
+		treated as the same URL.
+
+     gemini://	Gemini is fully supported, with the exception of client-
+		certificates.
+
+     gopher://	Gopher support is limited to items type 0, 1 and 7.  All text
+		is assumed to be encoded in UTF-8 (or ASCII).
+
+     User-entered URLs, given as argument on the command line or entered with
+     load-url, are intepreted with a simple heuristic:
+       if it's a proper absolute URL then use it as-is,
+       if it starts with ./ or / assume it's a file:// URL,
+       otherwise assume it's a Gemini URL.
+
+DEFAULT KEY BINDINGS
+     The default key bindings are very similar to GNU Emacs, but care has been
+     taken to include also bindings familiar for vi(1) and CUA users.  In
+     the following examples, C-x means Control-x, M-x means Meta-x, where the
+     Meta key may be either a special key on the keyboard or the ALT key;
+     otherwise ESC followed by the key X works as well, and C-M-x means to
+     press the key X together with both Control and Meta.
+
+     Keys are usually a single character, like p or n, but some special
+     keys are accepted as well.
+
+	   <up>		     Up arrow
+	   <down>	     Down arrow
+	   <left>	     Left arrow
+	   <right>	     Right arrow
+	   <prior>	     Previous page/Page up
+	   <next>	     Next page/Page down
+	   <home>	     Home
+	   <end>	     End
+	   <f0> thru <f63>   Function keys
+	   del or backspace  Backspace
+	   esc		     Escape
+	   space or spc	     Space
+	   enter or ret	     Enter
+	   tab		     Tab
+	   backtab	     Depends on the configuration of the terminal
+			     emulator; usually shift tab.
+
+   GNU Emacs-like keys
+	   C-p		 previous-line
+	   C-n		 next-line
+	   C-f		 forward-char
+	   C-b		 backward-char
+	   M-{		 backward-paragraph
+	   M-}		 forward-paragraph
+	   C-a		 move-beginning-of-line
+	   C-e		 move-end-of-line
+	   M-v, M-space	 scroll-up
+	   C-v, space	 scroll-down
+	   M-<		 beginning-of-buffer
+	   M->		 end-of-buffer
+	   C-x C-c	 kill-telescope
+	   C-g		 clear-minibuf
+	   M-x		 execute-extended-command
+	   C-c {	 dec-fill-column
+	   C-c }	 inc-fill-column
+	   C-c p	 previous-heading
+	   C-c n	 next-heading
+	   >		 load-url
+	   <		 load-current-url
+	   C-x C-f	 load-url
+	   C-x M-f	 load-current-url
+	   C-x o	 other-window
+	   C-x t 0	 tab-close
+	   C-x t 1	 tab-close-other
+	   C-x t 2	 tab-new
+	   C-x t o	 tab-next
+	   C-x t O	 tab-previous
+	   C-x t m	 tab-move
+	   C-x t M	 tab-move-to
+	   B, C-M-b	 previous-page
+	   F, C-M-f	 next-page
+	   <f7> a	 bookmark-page
+	   <f7> <f7>	 list-bookmarks
+	   C-z		 suspend-telescope
+
+   vi(1)-like keys
+	   k		 previous-line
+	   j		 next-line
+	   l		 forward-char
+	   h		 backward-char
+	   {		 backward-paragraph
+	   }		 forward-paragraph
+	   ^		 move-beginning-of-line
+	   $		 move-end-of-line
+	   K		 scroll-line-up
+	   J		 scroll-line-down
+	   g g		 beginning-of-buffer
+	   G		 end-of-buffer
+	   g D		 tab-close
+	   g N		 tab-new
+	   g t		 tab-next
+	   g T		 tab-previous
+	   g M-t	 tab-move
+	   g M-T	 tab-move-to
+	   H		 previous-page
+	   L		 next-page
+	   q		 kill-telescope
+	   ESC		 clear-minibuf
+	   :		 execute-extended-command
+
+   CUA-like keys
+	   <up>		 previous-line
+	   <down>	 next-line
+	   <right>	 forward-char
+	   <left>	 backward-char
+	   <home>	 move-beginning-of-line
+	   <end>	 move-end-of-line
+	   <prior>	 scroll-up
+	   <next>	 scroll-down
+	   C-w		 tab-close
+	   C-t		 tab-new
+	   M-<prior>	 tab-previous
+	   M-<next>	 tab-next
+	   M-<left>	 previous-page
+	   M-<right>	 next-page
+	   <f5>		 reload-page
+	   r		 reload-page
+
+   Neither Emacs nor vi specific
+	   <f1>		 toggle-help
+	   enter	 push-button
+	   M-enter	 push-button-new-tab
+	   M-tab	 previous-button
+	   backtab	 previous-button
+	   tab		 next-button
+	   M-t		 tab-select
+	   [		 tab-previous
+	   ]		 tab-next
+	   M-[		 tab-move-to
+	   M-]		 tab-move
+	   M-l		 link-select
+	   M-/		 swiper
+
+   Minibuffer-specific keys
+	   enter	 mini-complete-and-exit
+	   C-g		 mini-abort
+	   ESC		 mini-abort
+	   C-d		 mini-delete-char
+	   del		 mini-delete-backward-char
+	   backspace	 mini-delete-backward-char
+	   C-h		 mini-delete-backward-char
+	   C-b		 backward-char
+	   C-f		 forward-char
+	   <left>	 backward-char
+	   <right>	 forward-char
+	   C-e		 move-end-of-line
+	   C-a		 move-beginning-of-line
+	   <end>	 move-end-of-line
+	   <home>	 move-beginning-of-line
+	   C-k		 mini-kill-line
+	   M-p		 mini-previous-history-element
+	   M-n		 mini-next-history-element
+	   C-p		 previous-completion
+	   C-n		 next-completion
+	   <up>		 previous-completion
+	   <down>	 next-completion
+	   tab		 insert-current-candidate
+	   M-<		 mini-goto-beginning
+	   M->		 mini-goto-end
+
+INTERACTIVE COMMANDS
+     Follows the documentation for the interactive commands.  These commands
+     can be bound to a key or executed with execute-extended-command.
+
+   Movement commands
+     backward-char	       Move point one character backward.
+     backward-paragraph	       Move point one paragraph backward.
+     beginning-of-buffer       Move point to the beginning of the buffer.
+     end-of-buffer	       Move point to the end of the buffer.
+     forward-char	       Move point one character forward.
+     forward-paragraph	       Move point one paragraph forward.
+     insert-current-candidate  Copy the current selection text as minibuffer
+			       input.
+     move-beginning-of-line    Move point at the beginning of the current
+			       (visual) line.
+     move-end-of-line	       Move point at the end of the current (visual)
+			       line.
+     next-button	       Move point to the next link.
+     next-completion	       Select the next completion.
+     next-heading	       Move point to the next heading.
+     next-line		       Move point to the next (visual) line, in the
+			       same column if possible.
+     previous-button	       Move point to the previous link.
+     previous-completion       Select the previous completion.
+     previous-heading	       Move point to the previous heading.
+     previous-line	       Move point to the previous (visual) line.
+
+   Bookmark-related commands
+     bookmark-page	       Save a page in the bookmark file.  It preloads
+			       the minibuffer with the current URL.
+     list-bookmarks	       Load the bookmarks page.
+
+   Tab-related commands
+     tab-close		       Close the current tab.
+     tab-close-other	       Close all tabs but the current one.
+     tab-move		       Move the current tab after the next one,
+			       wrapping around if needed.
+     tab-move-to	       Move the current tab before the previous one,
+			       wrapping around if needed.
+     tab-new		       Open a new tab.
+     tab-next		       Focus next tab, wrapping around eventually.
+     tab-previous	       Focus the previous tab, wrapping around
+			       eventually.
+     tab-select		       Switch to a tab using the minibuffer.
+
+   Misc commands
+     clear-minibuf	       Clear the echo area.
+     dec-fill-column	       Decrement fill-column by two.
+     execute-extended-command  Execute an internal command.
+     kill-telescope	       Quit telescope.
+     inc-fill-column	       Increment fill-column by two.
+     link-select	       Select and visit a link using the minibuffer.
+     load-current-url	       Edit the current URL.
+     load-url		       Prompt for an URL.
+     next-page		       Go forward in the page history.
+     olivetti-mode	       Toggle olivetti mode (i.e. horizontal centering
+			       of the lines of the window.)
+     other-window	       Select the other window.
+     previous-page	       Go backward in the page history.
+     push-button	       Follow link at point, or toggle the visibility
+			       of the following preformatted block if called
+			       when the cursor is on the heading of the block.
+     push-button-new-tab       Follow link at point in a new tab.
+     redraw		       Redraw the screen, useful if some background
+			       program messed up the display.
+     reload-page	       Reload the current page.
+     scroll-down	       Scroll down by one visual page.
+     scroll-line-down	       Scroll down by one line.
+     scroll-line-up	       Scroll up by one line.
+     scroll-up		       Scroll up by one visual page.
+     suspend-telescope	       Suspend the current telescope session.
+     swiper		       Jump to a line using the minibuffer.
+     toc		       Jump to a heading using the minibuffer.
+     toggle-help	       Toggle side window with help about available
+			       keys and their associated interactive command.
+     toggle-pre-wrap	       Toggle the wrapping of preformatted blocks.
+
+   Minibuffer commands
+     mini-abort		       Abort the current minibuffer action.
+     mini-complete-and-exit    Complete the current minibuffer action.
+     mini-delete-backward-char
+			       Delete the character before the point.
+     mini-delete-char	       Delete the character after the point.
+     mini-goto-beginning       Select the first completion, if any.
+     mini-goto-end	       Select the last completion, if any.
+     mini-kill-line	       Delete from point until the end of the line.
+     mini-next-history-element
+			       Load the previous history element.
+     mini-previous-history-element
+			       Load the next history element.
+
+   Aliases
+     The following aliases are available during execute-extended-command:
+     tabn	       tab-next
+     tabnew	       tab-new
+     tabp	       tab-previous
+     q and wq	       kill-telescope
+
+CONFIGURATION FILE
+     During the startup, telescope reads the configuration file at
+     ~/.telescope/config or the one given with the -c flag.
+
+     telescope will also load a file called config-TERM, where TERM is the
+     name of the terminal type (i.e. the TERM environment variable), if it
+     exists.
+
+     The format of the configuration file is fairly flexible.  The current
+     line can be extended over multiple ones using a backslash (\).
+     Comments can be put anywhere in the file using a hash mark (#), and
+     extend to the end of the current line, but backslashes can't be used to
+     extend comments over multiple lines.
+
+     The following constructs are available:
+
+     bind map key cmd
+	     Bind key to the function cmd in the keymap map.  Valid values for
+	     map are global-map (i.e. when the user is viewing a page) and
+	     minibuffer-map (i.e. when the minibuffer has the focus.) key
+	     follows the same syntax described in DEFAULT KEY BINDINGS and all
+	     the possible functions are listed in INTERACTIVE COMMANDS.
+
+     proxy proto via url
+	     Use url as proxy for all URLs with protocol proto.	 url must be a
+	     Gemini URI without path, query and fragment component.
+
+     set opt = val
+	     Set the option opt to the value val.  Valid options are:
+
+	     autosave	    (integer) If greater than zero, save the session
+			    after the specified amount of seconds after some
+			    events happens (new or closed tabs, visited a link
+			    ...) Defaults to 20.
+	     dont-wrap-pre  (integer) If nonzero, don't wrap preformatted
+			    blocks.  Defaults to 0.
+	     emojify-link   (integer) If nonzero, when the text of a link
+			    starts with an emoji followed by a space, use that
+			    emoji as line prefix.  Defaults to 1.
+	     enable-colors  (integer) If nonzero, enable colours.  Defaults to
+			    0 if NO_COLORS is set, 1 otherwise.
+	     fill-column    (integer) If greater than zero, lines of text will
+			    be formatted in a way that don't exceed the given
+			    number of columns.	Defaults to 80.
+	     hide-pre-blocks
+			    (integer) If nonzero, hide by default the body of
+			    the preformatted blocks.  Defaults to zero.
+			    push-button can be used to toggle the visibility
+			    per-block.
+	     hide-pre-closing-line
+			    (integer) If nonzero, hide the closing line of
+			    preformatted blocks.  Defaults to 0.
+	     hide-pre-context
+			    (integer) If nonzero, hide the start and end line
+			    of the preformatted blocks.	 If both hide-pre-
+			    context and hide-pre-blocks are nonzero,
+			    preformatted blocks are irremediably hidden.
+			    Defaults to zero.
+	     new-tab-url    (string) URL for the new tab page.	Defaults to
+			    about:new.
+	     olivetti-mode  (integer) If nonzero, enable olivetti-mode
+			    Defaults to 1.
+	     set-title	    (integer) If nonzero, set the terminal title to
+			    the page title.  Defaults to 1.
+	     tab-bar-show   (integer) If tab-bar-show is -1 hide the tab bar
+			    permanently, if 0 show it unconditionally.	If
+			    it's 1, show the bar only when there is more than
+			    one tab.  Defaults to 1.
+
+     style name option
+	     Change the styling of the element identified by name.  Multiple
+	     options may be specified within curly braces.  Valid style
+	     identifiers are:
+		   line		       the area outside the lines in the body
+				       of the page.
+		   line.compl	       the completions.
+		   line.compl.current  the current completion.
+		   line.help	       text in the *Help* buffer.
+		   line.text	       text lines.
+		   line.link	       link lines.
+		   line.title1..3      headings
+		   line.item	       item lines.
+		   line.quote	       quotes.
+		   line.pre.start      the heading of a preformatted block.
+		   line.pre	       the content of a preformatted block.
+		   line.pre.end	       the closing line of a preformatted
+				       block.
+		   minibuffer	       the minibuffer.
+		   modeline	       the modeline.
+		   tabline	       the tabline.
+		   tabline.tab	       the non-focused tabs.
+		   tabline.current     the focused tab.
+
+	     Valid options are:
+
+	     attr prefix [line [trail]]
+		     Sets the text attributes.	If only one value is given,
+		     line and trail default to that; if two values are given
+		     then trail defaults to prefix.  Each attribute is a
+		     comma-separated list of keywords:
+			   normal     no attributes.
+			   standout   best highlighting mode for the terminal.
+			   underline  underlines the text.
+			   reverse    reverses background/foreground colors.
+			   blink      makes the text blinking.
+			   dim	      half bright.
+			   bold	      extra bright or bold.
+
+		     Only the style identifiers with the line. prefix accept
+		     up to three attributes.  The other will only use the
+		     first one given.
+
+	     bg prefix [line [trail]]
+		     Sets the background color.	 Follows the same behaviour as
+		     attr regarding the optional parameters.  The colour is
+		     one of black, red, green, yellow, blue, magenta, cyan and
+		     white; colour0 to colour255 (or color0 to color255) from
+		     the 256-colour set; default for the default colour.
+
+	     fg prefix [line [trail]]
+		     Sets the foreground color.	 It behaves just like bg.
+
+	     prefix prfx [cont]
+		     Sets the prefix for the current line type to prfx and
+		     cont as the prefix for the continuation lines (i.e. when
+		     a long line gets wrapped.) If cont is not given its value
+		     will be the same of prfx.
+
+ENVIRONMENT
+     When telescope is started, it inspects the following environment
+     variables:
+
+     HOME	The user's login directory.
+
+     NO_COLORS	To decide whether to use colors or not.	 The content of the
+		variable doesn't matter.
+
+     TERM	The user's terminal name.
+
+FILES
+     ~/.telescope/bookmarks.gmi
+	     Bookmarks file.
+     ~/.telescope/config
+	     Default configuration file.
+     ~/.telescope/known_hosts
+	     Hash of the certificates for all the known hosts.	Each line
+	     contains three fields: hostname with optional port number, hash
+	     of the certificate and a numeric flag.
+     ~/.telescope/lock
+	     Lock file used to prevent multiple instance of telescope from
+	     running at the same time.
+     ~/.telescope/pages/about_*.gmi
+	     Overrides for built-in about: pages.
+     ~/.telescope/session
+	     The list of tabs from the last session.  Every line identifies a
+	     tab and contains three space-separated fields: the full URL, a
+	     comma-separated list of attributes and the cached title.  Is
+	     written by kill-telescope and loaded during startup.
+
+EXAMPLES
+     It's possible to browse the small web (i.e. simple websites) by using
+     programs like the duckling-proxy by defining a proxy in
+     ~/.telescope/config:
+
+	   proxy http via "gemini://127.0.0.1:1965"
+	   proxy https via "gemini://127.0.0.1:1965"
+
+     To load telescope without any configuration
+
+	   telescope -c /dev/null
+
+AUTHORS
+     The telescope program was written by Omar Polo <op@omarpolo.com>.
+
+BUGS
+     There's no UI for out-of-band certificates validation.
+
+OpenBSD 7.0			August 27, 2021			   OpenBSD 7.0