Documentation ¶
Overview ¶
util.go
Index ¶
- Constants
- func Asset(name string) ([]byte, error)
- func AssetDir(name string) ([]string, error)
- func AssetInfo(name string) (os.FileInfo, error)
- func AssetNames() []string
- func ContainsVal(ps *env.ProgramState, b []env.Object, val env.Object) bool
- func Dict2Context(ps *env.ProgramState, s1 env.Dict) env.RyeCtx
- func DiffBlocks(ps *env.ProgramState, a env.Block, b env.Block) []env.Object
- func DiffLists(ps *env.ProgramState, a env.List, b env.List) []any
- func DiffStrings(a string, b string) string
- func FormatCsv(val env.Object, e env.Idxs) string
- func FormatJson(val env.Object, e env.Idxs) string
- func FormatSsv(val env.Object, e env.Idxs) string
- func GetDimValue(x, y float64) float64
- func GetTerminalColumns() int
- func IndexOfAt(s, sep string, n int) int
- func IndexOfSlice(ps *env.ProgramState, slice []env.Object, value env.Object) int
- func IntersectBlocks(ps *env.ProgramState, a env.Block, b env.Block) []env.Object
- func IntersectLists(ps *env.ProgramState, a env.List, b env.List) []any
- func IntersectStrings(a string, b string) string
- func IsTruthy(o env.Object) bool
- func KillProcess(pid int) error
- func MustAsset(name string) []byte
- func ProcessFunctionSpec(args env.Block) (bool, string)
- func ReadSecure(filename string, password string) string
- func RemoveDuplicate(ps *env.ProgramState, slice []env.Object) []env.Object
- func RestoreAsset(dir, name string) error
- func RestoreAssets(dir, name string) error
- func RyeHighlight(s string, inStrX bool, columns int) (string, bool)
- func RyeHighlight_OLD1(s string, inStrX bool) (string, bool)
- func SaveSecure(textToEncrypt string, filename string, password string)
- func SplitEveryList(s []env.Object, chunkSize int) [][]env.Object
- func SplitEveryString(s string, chunkSize int) []string
- func SplitMulti(s string, seps string) []string
- func StringToFieldsWithQuoted(str string, sepa string, quote string) env.Block
- func TermBold(s string) string
- func TermError(s string) string
- func TruncateString(s string, maxLen int) string
- func UnionOfBlocks(ps *env.ProgramState, a env.Block, b env.Block) []env.Object
- func UnionOfLists(ps *env.ProgramState, a env.List, b env.List) []any
- type HighlightedStringBuilder
- type KeyEvent
- type MLState
Constants ¶
const HistoryLimit = 1000
HistoryLimit is the maximum number of entries saved in the scrollback history.
Variables ¶
This section is empty.
Functions ¶
func Asset ¶
Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.
func AssetDir ¶
AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:
data/ foo.txt img/ a.png b.png
then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.
func AssetInfo ¶
AssetInfo loads and returns the asset info for the given name. It returns an error if the asset could not be found or could not be loaded.
func ContainsVal ¶
func Dict2Context ¶
func DiffBlocks ¶ added in v0.0.17
func DiffStrings ¶ added in v0.0.17
func GetDimValue ¶ added in v0.0.20
GetDimValue get max x-y or 0 value
func GetTerminalColumns ¶ added in v0.0.21
func GetTerminalColumns() int
func IndexOfSlice ¶
func IntersectBlocks ¶ added in v0.0.17
func IntersectLists ¶
func IntersectStrings ¶
func KillProcess ¶ added in v0.0.22
func MustAsset ¶
MustAsset is like Asset but panics when Asset would return an error. It simplifies safe initialization of global variables.
func ReadSecure ¶ added in v0.0.18
func RemoveDuplicate ¶ added in v0.0.13
func RestoreAsset ¶
RestoreAsset restores an asset under the given directory
func RestoreAssets ¶
RestoreAssets restores an asset under the given directory recursively
func RyeHighlight ¶ added in v0.0.21
func RyeHighlight_OLD1 ¶ added in v0.0.21
func SaveSecure ¶ added in v0.0.18
func SplitEveryString ¶
func SplitMulti ¶
func TruncateString ¶ added in v0.0.17
func UnionOfBlocks ¶ added in v0.0.17
func UnionOfLists ¶
Types ¶
type HighlightedStringBuilder ¶ added in v0.0.21
type HighlightedStringBuilder struct {
// contains filtered or unexported fields
}
func (*HighlightedStringBuilder) ColoredString ¶ added in v0.0.21
func (h *HighlightedStringBuilder) ColoredString(inStr bool) string
func (*HighlightedStringBuilder) Reset ¶ added in v0.0.21
func (h *HighlightedStringBuilder) Reset()
func (*HighlightedStringBuilder) String ¶ added in v0.0.21
func (h *HighlightedStringBuilder) String() string
func (*HighlightedStringBuilder) WriteRune ¶ added in v0.0.21
func (h *HighlightedStringBuilder) WriteRune(c rune)
type MLState ¶ added in v0.0.13
type MLState struct {
// contains filtered or unexported fields
}
State represents an open terminal
func NewMicroLiner ¶ added in v0.0.13
NewLiner initializes a new *State, and sets the terminal into raw mode. To restore the terminal to its previous state, call State.Close().
func (*MLState) AppendHistory ¶ added in v0.0.13
AppendHistory appends an entry to the scrollback history. AppendHistory should be called iff Prompt returns a valid command.
func (*MLState) ClearHistory ¶ added in v0.0.13
func (s *MLState) ClearHistory()
ClearHistory clears the scrollback history.