2019-12-18 18:38:21 +08:00
|
|
|
package edit
|
2019-11-03 09:22:56 +08:00
|
|
|
|
|
|
|
import (
|
2021-01-27 09:28:38 +08:00
|
|
|
"src.elv.sh/pkg/cli"
|
2021-02-12 02:49:00 +08:00
|
|
|
"src.elv.sh/pkg/cli/tk"
|
2021-01-27 09:28:38 +08:00
|
|
|
"src.elv.sh/pkg/eval"
|
|
|
|
"src.elv.sh/pkg/eval/vals"
|
|
|
|
"src.elv.sh/pkg/eval/vars"
|
2019-11-03 09:22:56 +08:00
|
|
|
)
|
|
|
|
|
2019-11-04 07:27:16 +08:00
|
|
|
//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) {
|
2021-09-02 05:41:39 +08:00
|
|
|
codeArea, ok := focusedCodeArea(app)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
codeArea.MutateState(func(s *tk.CodeAreaState) {
|
2019-11-04 07:27:16 +08:00
|
|
|
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) {
|
2021-09-02 05:41:39 +08:00
|
|
|
codeArea, ok := focusedCodeArea(app)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
codeArea.MutateState(func(s *tk.CodeAreaState) {
|
2021-02-12 05:44:41 +08:00
|
|
|
s.Buffer = tk.CodeBuffer{Content: text, Dot: len(text)}
|
|
|
|
})
|
2019-11-04 07:27:16 +08:00
|
|
|
}
|
|
|
|
|
2019-11-03 09:22:56 +08:00
|
|
|
//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.
|
|
|
|
|
2020-12-25 01:39:51 +08:00
|
|
|
func initStateAPI(app cli.App, nb eval.NsBuilder) {
|
2021-09-02 05:41:39 +08:00
|
|
|
// State API always operates on the root CodeArea widget
|
|
|
|
codeArea := app.ActiveWidget().(tk.CodeArea)
|
|
|
|
|
2020-12-25 01:39:51 +08:00
|
|
|
nb.AddGoFns("<edit>", map[string]interface{}{
|
2019-11-04 07:27:16 +08:00
|
|
|
"insert-at-dot": func(s string) { insertAtDot(app, s) },
|
|
|
|
"replace-input": func(s string) { replaceInput(app, s) },
|
|
|
|
})
|
|
|
|
|
2019-11-03 09:22:56 +08:00
|
|
|
setDot := func(v interface{}) error {
|
|
|
|
var dot int
|
|
|
|
err := vals.ScanToGo(v, &dot)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-09-02 05:41:39 +08:00
|
|
|
codeArea.MutateState(func(s *tk.CodeAreaState) {
|
2019-11-04 07:22:36 +08:00
|
|
|
s.Buffer.Dot = dot
|
2019-11-03 09:22:56 +08:00
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
getDot := func() interface{} {
|
2021-09-02 05:41:39 +08:00
|
|
|
return vals.FromGo(codeArea.CopyState().Buffer.Dot)
|
2019-11-03 09:22:56 +08:00
|
|
|
}
|
2020-12-25 01:39:51 +08:00
|
|
|
nb.Add("-dot", vars.FromSetGet(setDot, getDot))
|
2019-11-03 09:22:56 +08:00
|
|
|
|
2019-11-04 07:27:16 +08:00
|
|
|
setCurrentCommand := func(v interface{}) error {
|
2019-11-03 09:22:56 +08:00
|
|
|
var content string
|
|
|
|
err := vals.ScanToGo(v, &content)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-11-04 07:27:16 +08:00
|
|
|
replaceInput(app, content)
|
2019-11-03 09:22:56 +08:00
|
|
|
return nil
|
|
|
|
}
|
2019-11-04 07:27:16 +08:00
|
|
|
getCurrentCommand := func() interface{} {
|
2021-09-02 05:41:39 +08:00
|
|
|
return vals.FromGo(codeArea.CopyState().Buffer.Content)
|
2019-11-03 09:22:56 +08:00
|
|
|
}
|
2020-12-25 01:39:51 +08:00
|
|
|
nb.Add("current-command", vars.FromSetGet(setCurrentCommand, getCurrentCommand))
|
2019-11-03 09:22:56 +08:00
|
|
|
}
|