Add time undo and fill

This commit is contained in:
Martin Pander
2026-02-02 11:12:09 +01:00
parent fc8e9481c3
commit 9940316ace
5 changed files with 30 additions and 0 deletions

View File

@ -28,6 +28,7 @@ type Keymap struct {
Insert key.Binding
Tag key.Binding
Undo key.Binding
Fill key.Binding
StartStop key.Binding
}
@ -145,6 +146,11 @@ func NewKeymap() *Keymap {
key.WithHelp("undo", "Undo"),
),
Fill: key.NewBinding(
key.WithKeys("f"),
key.WithHelp("fill", "Fill gaps"),
),
StartStop: key.NewBinding(
key.WithKeys("s"),
key.WithHelp("start/stop", "Start/Stop"),