2021-05-17 23:03:56 +00:00
|
|
|
// +build !hilbiline
|
|
|
|
|
|
|
|
// Here we define a generic interface for readline and hilbiline,
|
|
|
|
// making them interchangable during build time
|
|
|
|
// this is normal readline
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/bobappleyard/readline"
|
|
|
|
|
|
|
|
type LineReader struct {
|
|
|
|
Prompt string
|
|
|
|
}
|
|
|
|
|
|
|
|
// other gophers might hate this naming but this is local, shut up
|
|
|
|
func NewLineReader(prompt string) *LineReader {
|
|
|
|
readline.Completer = readline.FilenameCompleter
|
|
|
|
readline.LoadHistory(homedir + "/.hilbish-history")
|
|
|
|
|
|
|
|
return &LineReader{
|
|
|
|
Prompt: prompt,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lr *LineReader) Read() (string, error) {
|
|
|
|
return readline.String(lr.Prompt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lr *LineReader) SetPrompt(prompt string) {
|
|
|
|
lr.Prompt = prompt
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lr *LineReader) AddHistory(cmd string) {
|
|
|
|
readline.AddHistory(cmd)
|
|
|
|
readline.SaveHistory(homedir + "/.hilbish-history")
|
|
|
|
}
|
|
|
|
|
2021-06-09 01:00:01 +00:00
|
|
|
func (lr *LineReader) ClearInput() {
|
|
|
|
readline.ReplaceLine("", 0)
|
|
|
|
readline.RefreshLine()
|
|
|
|
}
|
|
|
|
|