mirror of
https://github.com/Rudi9719/kbtui.git
synced 2026-03-22 15:37:23 +00:00
Move cursor on edit
This commit is contained in:
21
cmdEdit.go
21
cmdEdit.go
@ -6,6 +6,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/jroimartin/gocui"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -35,7 +37,24 @@ func cmdEdit(cmd []string) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
editString := origMessage.Result.Messages[0].Msg.Content.Text.Body
|
editString := origMessage.Result.Messages[0].Msg.Content.Text.Body
|
||||||
printToView("Input", fmt.Sprintf("/edit %d %s", messageId, editString))
|
g.Update(func(g *gocui.Gui) error {
|
||||||
|
inputView, err := g.View("Input")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
} else {
|
||||||
|
editString = fmt.Sprintf("/edit %d %s", messageId, editString)
|
||||||
|
fmt.Fprintf(inputView, editString)
|
||||||
|
viewX, viewY := inputView.Size()
|
||||||
|
if len(editString) < viewX {
|
||||||
|
viewX = len(editString)
|
||||||
|
viewY = 0
|
||||||
|
} else {
|
||||||
|
viewX = viewX / len(editString)
|
||||||
|
}
|
||||||
|
inputView.MoveCursor(viewX, viewY, true)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if len(cmd) < 3 {
|
if len(cmd) < 3 {
|
||||||
|
|||||||
Reference in New Issue
Block a user