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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/Bowery/prompt/keys.go')
-rw-r--r--vendor/github.com/Bowery/prompt/keys.go41
1 files changed, 0 insertions, 41 deletions
diff --git a/vendor/github.com/Bowery/prompt/keys.go b/vendor/github.com/Bowery/prompt/keys.go
deleted file mode 100644
index a4e2e40db..000000000
--- a/vendor/github.com/Bowery/prompt/keys.go
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2013-2015 Bowery, Inc.
-
-package prompt
-
-// Line ending in raw mode.
-var crlf = []byte("\r\n")
-
-const (
- backKey = '\u007f'
- escKey = '\u001B'
- spaceKey = '\u0020'
-)
-
-const (
- ctrlA = iota + 1
- ctrlB
- ctrlC
- ctrlD
- ctrlE
- ctrlF
- ctrlG
- ctrlH
- tabKey
- ctrlJ
- ctrlK
- ctrlL
- returnKey
- ctrlN
- ctrlO
- ctrlP
- ctrlQ
- ctrlR
- ctrlS
- ctrlT
- ctrlU
- ctrlV
- ctrlW
- ctrlX
- ctrlY
- ctrlZ
-)