mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
Support jumping to messages
This commit is contained in:
parent
1fbc142b0c
commit
a76d1079b2
3 changed files with 4 additions and 1 deletions
|
@ -8,7 +8,8 @@ const PATH_BINDINGS = {
|
|||
'g c': '/categories',
|
||||
'g t': '/top',
|
||||
'g b': '/bookmarks',
|
||||
'g p': '/my/activity'
|
||||
'g p': '/my/activity',
|
||||
'g m': '/my/messages'
|
||||
},
|
||||
|
||||
SELECTED_POST_BINDINGS = {
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
<li>{{{i18n 'keyboard_shortcuts_help.jump_to.top'}}}</li>
|
||||
<li>{{{i18n 'keyboard_shortcuts_help.jump_to.bookmarks'}}}</li>
|
||||
<li>{{{i18n 'keyboard_shortcuts_help.jump_to.profile'}}}</li>
|
||||
<li>{{{i18n 'keyboard_shortcuts_help.jump_to.messages'}}}</li>
|
||||
</ul>
|
||||
<h4>{{i18n 'keyboard_shortcuts_help.navigation.title'}}</h4>
|
||||
<ul>
|
||||
|
|
|
@ -2582,6 +2582,7 @@ en:
|
|||
top: '<b>g</b>, <b>t</b> Top'
|
||||
bookmarks: '<b>g</b>, <b>b</b> Bookmarks'
|
||||
profile: '<b>g</b>, <b>p</b> Profile'
|
||||
messages: '<b>g</b>, <b>m</b> Messages'
|
||||
navigation:
|
||||
title: 'Navigation'
|
||||
jump: '<b>#</b> Go to post #'
|
||||
|
|
Loading…
Reference in a new issue