We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf3f46a commit 076b578Copy full SHA for 076b578
table/table.go
@@ -219,8 +219,6 @@ func (m Model) Update(msg tea.Msg) (Model, tea.Cmd) {
219
m.MoveUp(m.viewport.Height / 2)
220
case key.Matches(msg, m.KeyMap.HalfPageDown):
221
m.MoveDown(m.viewport.Height / 2)
222
- case key.Matches(msg, m.KeyMap.LineDown):
223
- m.MoveDown(1)
224
case key.Matches(msg, m.KeyMap.GotoTop):
225
m.GotoTop()
226
case key.Matches(msg, m.KeyMap.GotoBottom):
0 commit comments