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.
1 parent 4a4a7bf commit 00bfc5cCopy full SHA for 00bfc5c
internal/controller.go
@@ -485,6 +485,11 @@ func (c *Controller) Input(e *tcell.EventKey) *tcell.EventKey {
485
}
486
c.ShowArticles(c.activeFeed)
487
c.ShowFeeds()
488
+ count := c.win.articles.GetRowCount()
489
+ r, _ := c.win.articles.GetSelection()
490
+ if r < count-1 {
491
+ c.win.articles.Select(r, 3)
492
+ }
493
494
495
case c.conf.KeyMoveDown, "Down":
0 commit comments