turbo-editors/turbo-gopublic Fork 0
145937ab1c0750b59c3b2770fac6c2875b5eec4d
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.

📦 Turbo Go 3d7798b · on 145937ab1c0750b59c3b2770fac6c2875b5eec4d · k33g · 12h ago
install.md · 89 lines · 3.7 KBmarkdown
Blame HistoryOpen raw

How to install and build Turbo Go

This guide shows how to get a working turbo-go binary. It assumes you have Go 1.26 or later and can use a terminal.

The short way, from a checkout

git clone ssh://git@rickub.com/turbo-editors/turbo-go.git
cd turbo-go
make install

That builds the editor, puts it where your shell looks for commands, and tells you what it found: the Go version, where the binary went, whether that directory is on your PATH, and whether gopls is installed. The build goes to a temporary file first, so a failed build never replaces a working installation.

Then, from any Go project:

turbo-go main.go

Options

scripts/install.sh --prefix ~/bin     # install somewhere of your choosing
scripts/install.sh --with-gopls       # install the language server too
scripts/install.sh --uninstall        # remove it again  (make uninstall)
scripts/install.sh --help

Without --prefix, the editor goes where go install would put it: $GOBIN, or $GOPATH/bin when GOBIN is unset — usually ~/go/bin.

Just build it, without installing

make build
./bin/turbo-go main.go

From the module proxy, without a checkout

go install rickub.com/turbo-editors/turbo-go@latest

If the command is then "not found", the install directory is not on your PATH:

export PATH="$PATH:$(go env GOPATH)/bin"

Check it works

turbo-go -version
turbo-go -list-themes

The first names the commit the binary was built from, which is what to quote in a bug report; the version number explains what each form means. The second prints the themes compiled into the binary and tells you where your own would go.

Variants

  • You only want to run it once: go run rickub.com/turbo-editors/turbo-go@latest main.go
  • You want the binary somewhere specific: go build -o /usr/local/bin/turbo-go .
  • Your terminal has no true colour: use turbo-go -theme turbo-classic, which is built from the sixteen ANSI colours only. turbo-dark and borland-light use 24-bit colours.

When something goes wrong

the installed binary does not run. The installer prints whatever the system said just above that line — read it first, because it names the actual problem.

The installer replaces the binary rather than writing over the one that is there, so a reinstall gives the file a fresh identity. That matters on macOS, which caches a binary's code signature against its inode: writing new bytes into the old inode leaves the cached signature describing something else, and the kernel then refuses to run a binary that built and installed perfectly. If you have an older copy installed by something that used cp, removing it first clears any such state:

scripts/install.sh --uninstall
scripts/install.sh

Go x.y or later is needed. The version comes from go.mod, so it cannot drift from what the code actually needs. Upgrade Go, or build from a tag that matches the toolchain you have.

build failed; nothing was installed. Your existing installation is untouched — the build goes to a temporary file first. The compiler's own output is printed above the message.

Terminal requirements

Turbo Go needs a terminal that reports its size and supports mouse reporting — every mainstream one does. It reads TERM through tcell; if the display is wrong, check that TERM matches your terminal (xterm-256color is a safe default).

See also

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# How to install and build Turbo Go

This guide shows how to get a working `turbo-go` binary. It assumes you have Go 1.26 or later and can use a terminal.

## The short way, from a checkout

```bash
git clone ssh://git@rickub.com/turbo-editors/turbo-go.git
cd turbo-go
make install
```

That builds the editor, puts it where your shell looks for commands, and tells you what it found: the Go version, where the binary went, whether that directory is on your `PATH`, and whether `gopls` is installed. The build goes to a temporary file first, so a failed build never replaces a working installation.

Then, from any Go project:

```bash
turbo-go main.go
```

### Options

```bash
scripts/install.sh --prefix ~/bin     # install somewhere of your choosing
scripts/install.sh --with-gopls       # install the language server too
scripts/install.sh --uninstall        # remove it again  (make uninstall)
scripts/install.sh --help
```

Without `--prefix`, the editor goes where `go install` would put it: `$GOBIN`, or `$GOPATH/bin` when `GOBIN` is unset — usually `~/go/bin`.

## Just build it, without installing

```bash
make build
./bin/turbo-go main.go
```

## From the module proxy, without a checkout

```bash
go install rickub.com/turbo-editors/turbo-go@latest
```

If the command is then "not found", the install directory is not on your `PATH`:

```bash
export PATH="$PATH:$(go env GOPATH)/bin"
```

## Check it works

```bash
turbo-go -version
turbo-go -list-themes
```

The first names the commit the binary was built from, which is what to quote in a bug report; [the version number](../reference/versioning.md) explains what each form means. The second prints the themes compiled into the binary and tells you where your own would go.

## Variants

- **You only want to run it once**: `go run rickub.com/turbo-editors/turbo-go@latest main.go`
- **You want the binary somewhere specific**: `go build -o /usr/local/bin/turbo-go .`
- **Your terminal has no true colour**: use `turbo-go -theme turbo-classic`, which is built from the sixteen ANSI colours only. `turbo-dark` and `borland-light` use 24-bit colours.

## When something goes wrong

**`the installed binary does not run`.** The installer prints whatever the system said just above that line — read it first, because it names the actual problem.

The installer replaces the binary rather than writing over the one that is there, so a reinstall gives the file a fresh identity. That matters on macOS, which caches a binary's code signature against its inode: writing new bytes into the old inode leaves the cached signature describing something else, and the kernel then refuses to run a binary that built and installed perfectly. If you have an older copy installed by something that used `cp`, removing it first clears any such state:

```bash
scripts/install.sh --uninstall
scripts/install.sh
```

**`Go x.y or later is needed`.** The version comes from `go.mod`, so it cannot drift from what the code actually needs. Upgrade Go, or build from a tag that matches the toolchain you have.

**`build failed; nothing was installed`.** Your existing installation is untouched — the build goes to a temporary file first. The compiler's own output is printed above the message.

## Terminal requirements

Turbo Go needs a terminal that reports its size and supports mouse reporting — every mainstream one does. It reads `TERM` through tcell; if the display is wrong, check that `TERM` matches your terminal (`xterm-256color` is a safe default).

## See also

- Every flag: [command line reference](../reference/cli.md)
- Getting completion working: [How to enable Go completion](enable-completion.md)
- A guided first session: [Your first file in Turbo Go](../tutorials/getting-started.md)