| 1234567891011121314151617181920212223242526272829303132333435 |
- package editor
- import (
- "strings"
- "github.com/gdamore/tcell/v3"
- )
- func (m *Model) HandleKeyInput(ev *tcell.EventKey) {
- for _, action := range append(m.CurrentActionSet(), m.AM.Common...) {
- if action.Binding != "" && strings.ToLower(ev.Name()) == strings.ToLower(action.Binding) {
- if action.Command != "" && action.AskArgs == true {
- m.Mode = ModePalette
- m.BM.PaletteBuffer.Clear()
- m.BM.PaletteBuffer.Insert("/" + action.Command + " ")
- return
- } else if action.Command == "" && action.AskArgs == true {
- m.Mode = ModePalette
- }
- action.Callback(m, []string{})
- return
- }
- }
- if m.Mode == ModeWrite {
- if ev.Key() == tcell.KeyRune {
- m.BM.Current().Insert(ev.Str())
- }
- }
- if m.Mode == ModePalette {
- if ev.Key() == tcell.KeyRune {
- m.BM.PaletteBuffer.Insert(ev.Str())
- }
- }
- }
|