Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sequences_dummy.go « go-windows-terminal-sequences « konsorten « github.com « vendor - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df61a6f2f6fe58dddbd4ed93e286aa6535824b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build linux darwin

package sequences

import (
	"fmt"
)

func EnableVirtualTerminalProcessing(stream uintptr, enable bool) error {
	return fmt.Errorf("windows only package")
}