turbo-editors/turbo-corepublic Fork 0
v1.0.2
Commits
Clone
git clone https://git.rickub.com/turbo-editors/turbo-core.git
git clone ssh://git@rickub.com/turbo-editors/turbo-core.git

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

pty_other.go · 14 lines · 573 BGo Blame HistoryRaw
🛟 Updated. 28d5985 k33g 12h ago1//go:build !linux && !darwin && !windows
2
3package terminal
4
5// startChild reports that this platform has no support yet.
6//
7// Linux and macOS have Unix pseudo-terminals and Windows has pseudo-consoles;
8// the BSDs and everything else would need a file of their own here. Until
9// somebody writes it, terminal windows are simply unavailable and the rest of
10// the editor is unaffected.
11func startChild(Options) (child, error) { return nil, ErrUnsupported }
12
13// defaultShell is never reached, since no session can be started.
14func defaultShell() string { return "/bin/sh" }