python中prompt的意思_在Go中构建强大的交互式提示,灵感来自于python-prompt-toolkit...

go-prompt

Library for building a powerful interactive prompt, inspired by python-prompt-toolkit. Easy building a multi-platform binary of the command line tools because written in Golang.

package main

import (

"fmt"

"github.com/c-bata/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

kube-prompt.gif

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

Flexible options

go-prompt provides many options. All options are listed in Developer Guide.

prompt-options.png

Keyboard Shortcuts

Emacs-like keyboard shortcut is available by default (it's also default shortcuts in Bash shell). You can customize and expand these shortcuts.

keyboard-shortcuts.gif

KeyBinding

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/delete the Line before the cursor to the clipboard.

History

You can use up-arrow and down-arrow to walk through the history of commands executed.

history.gif

Links

Author

Masashi Shibata

LICENSE

This software is licensed under the MIT License (See LICENSE ).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值