Blob


1 # Help
3 Welcome to Telescope!
5 Use the arrow keys, page up/down, hjkl or C-{b,f,n,p} to move the cursor and read the page.
7 Use > to enter an URL, B and F (uppercase) to navigate backward and forward in the history, [ and ] to move between tabs. C-t (control + t) opens a new tab and C-w (control + w) closes it.
9 This page is always available as
10 > $ telescope about:help
12 ## What is Gemini?
14 Gemini is a new internet protocol which:
16 * is heavier than gopher
17 * is lighter than the web
18 * will not replace either
19 * strives for maximum power to weight ratio
20 * takes user privacy very seriously
22 => gemini://gemini.circumlunar.space Project Gemini Homepage
24 > Tip: press tab and shift-tab to jump between links
26 > Tip: move the cursor over a link and press M-RET (alt + enter) to open it in another tab. Then use [ and ] (or ‘g t’ and ‘g T’) to switch between tabs.
28 ## What is Telescope?
30 Telescope is a Gemini browser written for fun, as hobbystic project in my free time. As such, it lacks tons of features available in others, more mature Gemini browsers, but it also has some unique ones.
32 The UI is strongly inspired from Emacs and w3m, so it’s possible to notice various familiar concepts, such as the minibuffer or the tab line. Care has been taken to make it as familiar as possible for vi and “CUA” users too.
34 => gemini://telescope.omarpolo.com Telescope Project Homepage
36 Telescope is documented carefully, so please refer to the manpage to know more about all the available keybindings, the format and location of the configuration file and more:
38 > man telescope
40 ## Appearance
42 Telescope is fully customizable. The default configuration file is
44 > ~/.telescope/config
46 If your terminal emulator doesn’t have problems with UTF-8 glyphs, try to load Telescope with the following configuration:
48 ```Example of configuration file with some pretty defaults
49 set hide-pre-closing-line = 1
51 style line.pre.start {
52 prefix "─── " " "
53 }
55 style line.item {
56 prefix " • " " "
57 }
59 style line.link {
60 prefix "→ " " "
61 }
63 style line.quote {
64 prefix " ┃ "
65 }
66 ```