Readline is a pure go(golang) implementation for GNU-Readline kind library
Go to file
Cheney 2622435bfa improve readme 2015-09-23 13:35:48 +08:00
example support save history item 2015-09-22 18:16:24 +08:00
.gitignore support history 2015-09-21 13:14:10 +08:00
.travis.yml add travis 2015-09-23 13:11:42 +08:00
LICENSE Initial commit 2015-09-20 23:11:30 +08:00
README.md improve readme 2015-09-23 13:35:48 +08:00
char.go fix typo 2015-09-23 13:03:13 +08:00
history.go fix fwd/bck search 2015-09-23 11:26:20 +08:00
operation.go fix typo 2015-09-23 13:03:13 +08:00
readline.go support save history item 2015-09-22 18:16:24 +08:00
runebuf.go fix typo 2015-09-23 13:03:13 +08:00
search.go fix state 2015-09-23 11:28:50 +08:00
terminal.go refactor 2015-09-23 11:46:56 +08:00
utils.go fix typo 2015-09-23 13:03:13 +08:00

README.md

readline

Software License Build Status GoDoc

A pure go implementation for gnu readline.

Demo

demo

Usage

You can read example code in example/main.go.

  • Simplest example
import "github.com/chzyer/readline"

rl, err := readline.New("> ")
if err != nil {
	panic(err)
}
defer rl.Close()

for {
	line, err := rl.Readline()
	if err != nil { // io.EOF
		break
	}
	println(line)
}
  • Example with durable history
rl, err := readline.NewEx(&readline.Config{
	Prompt: "> ",
	HistoryFile: "/tmp/readline.tmp",
})
if err != nil {
	panic(err)
}
defer rl.Close()

for {
	line, err := rl.Readline()
	if err != nil { // io.EOF
		break
	}
	println(line)
}
  • Example with auto refresh
import (
	"log"
	"github.com/chzyer/readline"
)

rl, err := readline.New("> ")
if err != nil {
	panic(err)
}
defer rl.Close()
log.SetOutput(l.Stderr()) // let "log" write to l.Stderr instead of os.Stderr

go func() {
	for _ = range time.Tick(time.Second) {
		log.Println("hello")
	}
}()

for {
	line, err := rl.Readline()
	if err != nil { // io.EOF
		break
	}
	println(line)
}

Shortcut

Meta+B means press Esc and n separately.
Users can change that in terminal simulator(i.e. iTerm2) to Alt+B

Shortcut Comment Support
Ctrl+A Beginning of line Yes
Ctrl+B / Backward one character Yes
Meta+B Backward one word Yes
Ctrl+C Send io.EOF Yes
Ctrl+D Delete one character Yes
Meta+D Delete one word Yes
Ctrl+E End of line Yes
Ctrl+F / Forward one character Yes
Meta+F Forward one word Yes
Ctrl+G Cancel Yes
Ctrl+H Delete previous character Yes
Ctrl+I / Tab Command line completion No
Ctrl+J Line feed Yes
Ctrl+K Cut text to the end of line Yes
Ctrl+L Clean screen No
Ctrl+M Same as Enter key Yes
Ctrl+N / Next line (in history) Yes
Ctrl+P / Prev line (in history) Yes
Ctrl+R Search backwards in history Yes
Ctrl+S Search forwards in history Yes
Ctrl+T Transpose characters Yes
Meta+T Transpose words No
Ctrl+U Cut text to the beginning of line No
Ctrl+W Cut previous word Yes
Backspace Delete previous character Yes
Meta+Backspace Cut previous word Yes
Enter Line feed Yes