ziggs/vendor/git.tcp.direct/Mirrors/go-prompt
2023-01-07 17:28:39 -08:00
..
internal Add CPU load based light changes 2022-08-29 23:04:48 -07:00
.gitignore Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
buffer.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
CHANGELOG.md Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
completion.go WIP ssh server 2023-01-07 17:28:39 -08:00
document.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
emacs.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
filter.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
history.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
input_posix.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
input_windows.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
input.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
key_bind_func.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
key_bind.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
key_string.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
key.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
LICENSE Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
Makefile Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
option.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
output_posix.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
output_vt100.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
output_windows.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
output.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
prompt.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
README.md Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
render.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
shortcut.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
signal_posix.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00
signal_windows.go Sweet, this is overengineered already 2022-07-08 05:37:21 -07:00

go-prompt

Go Report Card Software License GoDoc tests

A library for building powerful interactive prompts inspired by python-prompt-toolkit, making it easier to build cross-platform command line tools using Go.

package main

import (
	"fmt"
	"git.tcp.direct/tcp.direct/go-prompt"
)

func completer(d prompt.Document) []prompt.Suggest {
	s := []prompt.Suggest{
		{Text: "users", Description: "Store the username and age"},
		{Text: "articles", Description: "Store the article text posted by user"},
		{Text: "comments", Description: "Store the text commented to articles"},
	}
	return prompt.FilterHasPrefix(s, d.GetWordBeforeCursor(), true)
}

func main() {
	fmt.Println("Please select table.")
	t := prompt.Input("> ", completer)
	fmt.Println("You selected " + t)
}

Projects using go-prompt

Features

Powerful auto-completion

demo

(This is a GIF animation of kube-prompt.)

Flexible options

go-prompt provides many options. Please check option section of GoDoc for more details.

options

Keyboard Shortcuts

Emacs-like keyboard shortcuts are available by default (these also are the default shortcuts in Bash shell). You can customize and expand these shortcuts.

keyboard shortcuts

Key Binding Description
Ctrl + A Go to the beginning of the line (Home)
Ctrl + E Go to the end of the line (End)
Ctrl + P Previous command (Up arrow)
Ctrl + N Next command (Down arrow)
Ctrl + F Forward one character
Ctrl + B Backward one character
Ctrl + D Delete character under the cursor
Ctrl + H Delete character before the cursor (Backspace)
Ctrl + W Cut the word before the cursor to the clipboard
Ctrl + K Cut the line after the cursor to the clipboard
Ctrl + U Cut the line before the cursor to the clipboard
Ctrl + L Clear the screen

History

You can use Up arrow and Down arrow to walk through the history of commands executed.

History

Multiple platform support

We have confirmed go-prompt works fine in the following terminals:

  • iTerm2 (macOS)
  • Terminal.app (macOS)
  • Command Prompt (Windows)
  • gnome-terminal (Ubuntu)

Author

Masashi Shibata

License

This software is licensed under the MIT license, see LICENSE for more information.