mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-28 07:21:21 +08:00
86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
package edit
|
|
|
|
import (
|
|
"github.com/elves/elvish/pkg/cli"
|
|
"github.com/elves/elvish/pkg/eval"
|
|
"github.com/elves/elvish/pkg/eval/vals"
|
|
"github.com/elves/elvish/pkg/eval/vars"
|
|
)
|
|
|
|
//elvdoc:fn insert-at-dot
|
|
//
|
|
// ```elvish
|
|
// edit:insert-at-dot $text
|
|
// ```
|
|
//
|
|
// Inserts the given text at the dot, moving the dot after the newly
|
|
// inserted text.
|
|
|
|
func insertAtDot(app cli.App, text string) {
|
|
app.CodeArea().MutateState(func(s *cli.CodeAreaState) {
|
|
s.Buffer.InsertAtDot(text)
|
|
})
|
|
}
|
|
|
|
//elvdoc:fn replace-input
|
|
//
|
|
// ```elvish
|
|
// edit:replace-input $text
|
|
// ```
|
|
//
|
|
// Equivalent to assigning `$text` to `$edit:current-command`.
|
|
|
|
func replaceInput(app cli.App, text string) {
|
|
cli.SetCodeBuffer(app, cli.CodeBuffer{Content: text, Dot: len(text)})
|
|
}
|
|
|
|
//elvdoc:var -dot
|
|
//
|
|
// Contains the current position of the cursor, as a byte position within
|
|
// `$edit:current-command`.
|
|
|
|
//elvdoc:var current-command
|
|
//
|
|
// Contains the content of the current input. Setting the variable will
|
|
// cause the cursor to move to the very end, as if `edit-dot = (count
|
|
// $edit:current-command)` has been invoked.
|
|
//
|
|
// This API is subject to change.
|
|
|
|
func initStateAPI(app cli.App, ns eval.Ns) {
|
|
ns.AddGoFns("<edit>", map[string]interface{}{
|
|
"insert-at-dot": func(s string) { insertAtDot(app, s) },
|
|
"replace-input": func(s string) { replaceInput(app, s) },
|
|
})
|
|
|
|
setDot := func(v interface{}) error {
|
|
var dot int
|
|
err := vals.ScanToGo(v, &dot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
app.CodeArea().MutateState(func(s *cli.CodeAreaState) {
|
|
s.Buffer.Dot = dot
|
|
})
|
|
return nil
|
|
}
|
|
getDot := func() interface{} {
|
|
return vals.FromGo(app.CodeArea().CopyState().Buffer.Dot)
|
|
}
|
|
ns.Add("-dot", vars.FromSetGet(setDot, getDot))
|
|
|
|
setCurrentCommand := func(v interface{}) error {
|
|
var content string
|
|
err := vals.ScanToGo(v, &content)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
replaceInput(app, content)
|
|
return nil
|
|
}
|
|
getCurrentCommand := func() interface{} {
|
|
return vals.FromGo(cli.GetCodeBuffer(app).Content)
|
|
}
|
|
ns.Add("current-command", vars.FromSetGet(setCurrentCommand, getCurrentCommand))
|
|
}
|