Close #1128.
This commit is contained in:
parent
90e40e11e7
commit
1752e15da9
@ -1,3 +1,5 @@
|
|||||||
|
- Added the `Deselect reply` keybind.
|
||||||
|
|
||||||
## 3.5.0 - *2013-05-26*
|
## 3.5.0 - *2013-05-26*
|
||||||
|
|
||||||
- The Thread Stats counters now include the number of the page where the thread is.
|
- The Thread Stats counters now include the number of the page where the thread is.
|
||||||
|
|||||||
@ -153,7 +153,7 @@ Config =
|
|||||||
usercss: ''
|
usercss: ''
|
||||||
hotkeys:
|
hotkeys:
|
||||||
# Header, QR & Options
|
# Header, QR & Options
|
||||||
'Toggle board list': ['Ctrl+b', 'Toggle the full board list.']
|
'Toggle board list': ['Ctrl+b', 'Toggle the full board list.']
|
||||||
'Open empty QR': ['q', 'Open QR without post number inserted.']
|
'Open empty QR': ['q', 'Open QR without post number inserted.']
|
||||||
'Open QR': ['Shift+q', 'Open QR with post number inserted.']
|
'Open QR': ['Shift+q', 'Open QR with post number inserted.']
|
||||||
'Open settings': ['Alt+o', 'Open Settings.']
|
'Open settings': ['Alt+o', 'Open Settings.']
|
||||||
@ -183,6 +183,7 @@ Config =
|
|||||||
# Reply Navigation
|
# Reply Navigation
|
||||||
'Next reply': ['j', 'Select next reply.']
|
'Next reply': ['j', 'Select next reply.']
|
||||||
'Previous reply': ['k', 'Select previous reply.']
|
'Previous reply': ['k', 'Select previous reply.']
|
||||||
|
'Deselect reply': ['Shift+d', 'Deselect reply.']
|
||||||
'Hide': ['x', 'Hide thread.']
|
'Hide': ['x', 'Hide thread.']
|
||||||
updater:
|
updater:
|
||||||
checkbox:
|
checkbox:
|
||||||
|
|||||||
@ -91,6 +91,8 @@ Keybinds =
|
|||||||
Keybinds.hl +1, threadRoot
|
Keybinds.hl +1, threadRoot
|
||||||
when Conf['Previous reply']
|
when Conf['Previous reply']
|
||||||
Keybinds.hl -1, threadRoot
|
Keybinds.hl -1, threadRoot
|
||||||
|
when Conf['Deselect reply']
|
||||||
|
Keybinds.hl 0, threadRoot
|
||||||
when Conf['Hide']
|
when Conf['Hide']
|
||||||
ThreadHiding.toggle thread if g.VIEW is 'index'
|
ThreadHiding.toggle thread if g.VIEW is 'index'
|
||||||
else
|
else
|
||||||
@ -166,6 +168,10 @@ Keybinds =
|
|||||||
location.href = url
|
location.href = url
|
||||||
|
|
||||||
hl: (delta, thread) ->
|
hl: (delta, thread) ->
|
||||||
|
unless delta
|
||||||
|
if postEl = $ '.reply.highlight', thread
|
||||||
|
$.rmClass postEl, 'highlight'
|
||||||
|
return
|
||||||
if Conf['Bottom header']
|
if Conf['Bottom header']
|
||||||
topMargin = 0
|
topMargin = 0
|
||||||
else
|
else
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user