We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 820140a + a553553 commit ece12c4Copy full SHA for ece12c4
src/internal/key_function.go
@@ -262,16 +262,14 @@ func (m *model) sortOptionsKey(msg string) {
262
switch msg {
263
case containsKey(msg, hotkeys.OpenSortOptionsMenu):
264
m.cancelSortOptions()
265
- case containsKey(msg, hotkeys.CancelTyping):
+ case containsKey(msg, hotkeys.Quit):
266
267
- case containsKey(msg, hotkeys.ConfirmTyping):
+ case containsKey(msg, hotkeys.Confirm):
268
m.confirmSortOptions()
269
case containsKey(msg, hotkeys.ListUp):
270
m.sortOptionsListUp()
271
case containsKey(msg, hotkeys.ListDown):
272
m.sortOptionsListDown()
273
- case containsKey(msg, hotkeys.Quit):
274
- m.cancelSortOptions()
275
}
276
277
0 commit comments