Change ordering to be the same as the dropdown.
This commit is contained in:
parent
1c47e1c197
commit
c97112d0ee
@ -189,8 +189,8 @@ Config =
|
|||||||
'Previous page': ['Left', 'Jump to the previous page.']
|
'Previous page': ['Left', 'Jump to the previous page.']
|
||||||
'Search form': ['Ctrl+Alt+s', 'Focus the search field on the board index.']
|
'Search form': ['Ctrl+Alt+s', 'Focus the search field on the board index.']
|
||||||
'Paged mode': ['Ctrl+1', 'Sets the index mode to paged.']
|
'Paged mode': ['Ctrl+1', 'Sets the index mode to paged.']
|
||||||
'Catalog mode': ['Ctrl+2', 'Sets the index mode to catalog.']
|
'All pages mode': ['Ctrl+2', 'Sets the index mode to all threads.']
|
||||||
'All pages mode': ['Ctrl+3', 'Sets the index mode to all threads.']
|
'Catalog mode': ['Ctrl+3', 'Sets the index mode to catalog.']
|
||||||
'Cycle sort type': ['Ctrl+x', 'Cycle through index sort types.']
|
'Cycle sort type': ['Ctrl+x', 'Cycle through index sort types.']
|
||||||
# Thread Navigation
|
# Thread Navigation
|
||||||
'Next thread': ['Down', 'See next thread.']
|
'Next thread': ['Down', 'See next thread.']
|
||||||
|
|||||||
@ -91,12 +91,12 @@ Keybinds =
|
|||||||
when Conf['Paged mode']
|
when Conf['Paged mode']
|
||||||
return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'paged'
|
return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'paged'
|
||||||
Index.setIndexMode 'paged'
|
Index.setIndexMode 'paged'
|
||||||
when Conf['Catalog mode']
|
|
||||||
return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'catalog'
|
|
||||||
Index.setIndexMode 'catalog'
|
|
||||||
when Conf['All pages mode']
|
when Conf['All pages mode']
|
||||||
return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'all pages'
|
return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'all pages'
|
||||||
Index.setIndexMode 'all pages'
|
Index.setIndexMode 'all pages'
|
||||||
|
when Conf['Catalog mode']
|
||||||
|
return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'catalog'
|
||||||
|
Index.setIndexMode 'catalog'
|
||||||
when Conf['Cycle sort type']
|
when Conf['Cycle sort type']
|
||||||
Index.cycleSortType()
|
Index.cycleSortType()
|
||||||
# Thread Navigation
|
# Thread Navigation
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user