turbo-editors/turbo-gopublic Fork 0
v1.0.0
Commits
Clone
git clone https://git.rickub.com/turbo-editors/turbo-go.git
git clone ssh://git@rickub.com/turbo-editors/turbo-go.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

README.md · 59 lines · 2.8 KBmarkdown Blame HistoryRaw
📦 Turbo Go 3d7798b k33g 10h ago1# Turbo Go — documentation
2
3Turbo Go is a Turbo C-style editor for Go: a full-screen terminal IDE with menus, movable windows, syntax colouring for nine languages, themes, completion from `gopls`, shell windows, per-project settings, a project tree, snippets, and the go toolchain a menu away.
4
5This documentation follows the [Diátaxis](https://diataxis.fr) method. Four kinds of page, four different needs — go to the one that matches what you want right now.
6
7| I want to… | Go to |
8| --- | --- |
9| **learn** the editor by using it | [Tutorials](tutorials/) |
10| **do** something specific | [How-to guides](how-to/) |
11| **look up** an exact detail | [Reference](reference/) |
12| **understand** how and why it works | [Explanation](explanation/) |
13
14## Tutorials — learning by doing
15
16- [Your first file in Turbo Go](tutorials/getting-started.md) — build, open the editor, type a Go program, colour it, save it and run it.
17
18## How-to guides — recipes for a task
19
20- [How to install and build Turbo Go](how-to/install.md)
21- [How to run the tests](how-to/run-the-tests.md)
22- [How to enable Go completion](how-to/enable-completion.md)
23- [How to write your own theme](how-to/write-a-theme.md)
24- [How to move around a file](how-to/navigate-code.md)
25- [How to ask what the code means](how-to/ask-about-code.md)
26- [How to run shell commands without leaving the editor](how-to/use-a-terminal.md)
27- [How to give a project its own settings](how-to/configure-a-project.md)
28- [How to browse a project and open files from a tree](how-to/browse-a-project.md)
29- [How to insert snippets from a menu](how-to/use-snippets.md)
30- [How to run go commands from the editor](how-to/run-go-commands.md)
31- [How to talk to a coding agent from the editor](how-to/talk-to-an-agent.md)
32- [How to make a release](how-to/make-a-release.md)
33
34## Reference — the exact details
35
36- [Command line](reference/cli.md)
37- [Keyboard](reference/keyboard.md)
38- [Menus](reference/menus.md)
39- [Theme file format](reference/themes.md)
40- [Terminal windows](reference/terminal.md)
41- [Project settings](reference/project-settings.md)
42- [Project tree](reference/project-tree.md)
43- [Languages coloured](reference/languages.md)
44- [Snippets](reference/snippets.md)
45- [Go tools](reference/go-tools.md)
46- [Agents and ACP](reference/acp.md)
47- [The version number](reference/versioning.md)
48
49## Explanation — understanding
50
51- [Architecture](explanation/architecture.md)
52- [Design decisions](explanation/design-decisions.md)
53- [Colouring and completion](explanation/colouring-and-completion.md)
54- [Terminal windows](explanation/terminal-windows.md)
55- [Project settings](explanation/project-settings.md)
56- [Project tree](explanation/project-tree.md)
57- [Snippets](explanation/snippets.md)
58- [Go tools](explanation/go-tools.md)
59- [Agent windows](explanation/agent-windows.md)