diff --git a/app/assets/javascripts/discourse/lib/keyboard_shortcuts.js b/app/assets/javascripts/discourse/lib/keyboard_shortcuts.js index 95e2a41574d..d11e29e99a7 100644 --- a/app/assets/javascripts/discourse/lib/keyboard_shortcuts.js +++ b/app/assets/javascripts/discourse/lib/keyboard_shortcuts.js @@ -48,11 +48,11 @@ Discourse.KeyboardShortcuts = Ember.Object.createWithMixins({ 'home': 'goToFirstPost', '#': 'toggleProgress', 'end': 'goToLastPost', + 'shift+j': 'nextSection', 'j': 'selectDown', + 'shift+k': 'prevSection', 'k': 'selectUp', 'u': 'goBack', - '`': 'nextSection', - '~': 'prevSection', '/': 'showSearch', '=': 'showSiteMap', // open site map menu 'p': 'showCurrentUser', // open current user menu diff --git a/config/locales/client.en.yml b/config/locales/client.en.yml index 154635dc8a9..da972a8c7b7 100644 --- a/config/locales/client.en.yml +++ b/config/locales/client.en.yml @@ -2052,7 +2052,7 @@ en: back: 'u Back' up_down: 'k/j Move selection up/down' open: 'o or Enter Open selected topic' - next_prev: '`/~ Next/previous section' + next_prev: 'shift j/shift k Next/previous section' application: title: 'Application' create: 'c Create a new topic'