File: keys_unix.go

package info (click to toggle)
golang-github-bowery-prompt 0.0~git20160808.0.d43c270-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 128 kB
  • ctags: 186
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 267 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build linux darwin freebsd openbsd netbsd dragonfly

// Copyright 2013-2015 Bowery, Inc.

package prompt

const mvToCol = "\u001b[0G\u001b[%dC"

var (
	mvLeftEdge = []byte("\u001b[0G")
	clsScreen  = []byte("\u001b[H\u001b[2J")
	delRight   = []byte("\u001b[0K")
)