In Using Different Keys I would change the title to clarify that the chapter speaks about reusing key handler for a different key.
### Key Aliases
You can add another shortcut to function that is already mapped to specific key. For example,
if you want to `w` to behave like `j` - navigate upwards.
textView.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
if event.Rune() == 'w' {
return tcell.NewEventKey(tcell.KeyRune, 'j', tcell.ModNone)
}
return event
})
In Using Different Keys I would change the title to clarify that the chapter speaks about reusing key handler for a different key.