-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkeys.go
137 lines (131 loc) · 3.07 KB
/
keys.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package main
import "github.com/charmbracelet/bubbles/key"
// ShortHelp returns keybindings to be shown in the mini help view. It's part
// of the key.Map interface.
func (k keyMap) ShortHelp() []key.Binding {
return []key.Binding{k.Tab, k.Submit, k.Back, k.Help, k.Quit}
}
// FullHelp returns keybindings for the expanded help view. It's part of the
// key.Map interface.
func (k keyMap) FullHelp() [][]key.Binding {
return [][]key.Binding{
{k.Up, k.Down},
{k.Left, k.Right},
{k.Space, k.Enter},
{k.New, k.Edit},
{k.Block, k.Unblock},
{k.Filter, k.Quit},
}
}
func (k keyMap) BlockHelp() []key.Binding {
return []key.Binding{k.Up, k.Down, k.BlockSelect, k.BlockSubmit, k.Back}
}
type keyMap struct {
New key.Binding
Edit key.Binding
Delete key.Binding
Up key.Binding
Down key.Binding
Right key.Binding
Left key.Binding
Enter key.Binding
Space key.Binding
Help key.Binding
Quit key.Binding
Back key.Binding
Tab key.Binding
Submit key.Binding
Filter key.Binding
Yes key.Binding
No key.Binding
Unblock key.Binding
Block key.Binding
BlockSelect key.Binding
BlockSubmit key.Binding
}
var keys = keyMap{
New: key.NewBinding(
key.WithKeys("n"),
key.WithHelp("n", "add new task"),
),
Edit: key.NewBinding(
key.WithKeys("m"),
key.WithHelp("m", "modify focused task"),
),
Delete: key.NewBinding(
key.WithKeys("d"),
key.WithHelp("d", "delete task"),
),
Up: key.NewBinding(
key.WithKeys("up", "k"),
key.WithHelp("↑/k", "move up"),
),
Down: key.NewBinding(
key.WithKeys("down", "j"),
key.WithHelp("↓/j", "move down"),
),
Right: key.NewBinding(
key.WithKeys("right", "l"),
key.WithHelp("→/l", "move right"),
),
Left: key.NewBinding(
key.WithKeys("left", "h"),
key.WithHelp("←/l", "move left"),
),
Space: key.NewBinding(
key.WithKeys(" "),
key.WithHelp("space", "start/stop task"),
),
Enter: key.NewBinding(
key.WithKeys("enter"),
key.WithHelp("enter", "finish task"),
),
Help: key.NewBinding(
key.WithKeys("?", "b"),
key.WithHelp("?", "toggle help"),
),
Quit: key.NewBinding(
key.WithKeys("q", "ctrl+c"),
key.WithHelp("q/ctrl+c", "quit"),
),
Back: key.NewBinding(
key.WithKeys("esc"),
key.WithHelp("esc", "back"),
),
Tab: key.NewBinding(
key.WithKeys("tab"),
key.WithHelp("tab", "Goto next input"),
),
Submit: key.NewBinding(
key.WithKeys("enter"),
key.WithHelp("enter", "submit task"),
),
Filter: key.NewBinding(
key.WithKeys("/"),
key.WithHelp("/", "filter tasks"),
),
No: key.NewBinding(
key.WithKeys("n"),
key.WithHelp("n", "No"),
),
Yes: key.NewBinding(
key.WithKeys("y"),
key.WithHelp("y", "Yes"),
),
Unblock: key.NewBinding(
key.WithKeys("u"),
key.WithHelp("u", "unblock task"),
),
Block: key.NewBinding(
key.WithKeys("b"),
key.WithHelp("b", "block tasks"),
),
BlockSelect: key.NewBinding(
key.WithKeys("space"),
key.WithHelp("space", "select task"),
),
BlockSubmit: key.NewBinding(
key.WithKeys("enter"),
key.WithHelp("enter", "submit"),
),
}