diff --git a/html/General/Settings-section-Filter-guide.html b/html/General/Settings-section-Filter-guide.html
index ae73a66da..1656d0cb8 100644
--- a/html/General/Settings-section-Filter-guide.html
+++ b/html/General/Settings-section-Filter-guide.html
@@ -23,7 +23,7 @@
For example: highlight; or highlight:wallpaper;.
- Highlighted OPs will have their threads put on top of board pages by default.
+ Highlighted OPs will have their threads put on top of the board index by default.
For example: top:yes; or top:no;.
diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee
index 31a237e9c..464bf76c2 100644
--- a/src/Miscellaneous/Keybinds.coffee
+++ b/src/Miscellaneous/Keybinds.coffee
@@ -78,9 +78,11 @@ Keybinds =
when Conf['Open front page']
$.open "/#{g.BOARD}/#delform"
when Conf['Next page']
+ return if Conf['Index Mode'] isnt 'paged'
if form = $ '.next form'
window.location = form.action
when Conf['Previous page']
+ return if Conf['Index Mode'] isnt 'paged'
if form = $ '.prev form'
window.location = form.action
when Conf['Search form']