This commit is contained in:
Mayhem 2014-06-13 01:42:45 +02:00
parent 3e23d567ad
commit 4c17333f53

View File

@ -101,16 +101,19 @@ Keybinds =
Index.cycleSortType()
# Thread Navigation
when Conf['Next thread']
return if g.VIEW isnt 'index'
return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog'
Nav.scroll +1
when Conf['Previous thread']
return if g.VIEW isnt 'index'
return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog'
Nav.scroll -1
when Conf['Expand thread']
return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog'
ExpandThread.toggle thread
when Conf['Open thread']
return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog'
Keybinds.open thread
when Conf['Open thread tab']
return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog'
Keybinds.open thread, true
# Reply Navigation
when Conf['Next reply']