diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-04-26 21:11:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 21:11:43 -0400 |
commit | 763c6c76aa5bceb1eb929aa3a87bacf91e37407f (patch) | |
tree | 1624a83faeac46cc6d977ca0cd176c1f399b3da0 /ext/js/pages/settings | |
parent | 6f5ad490fb54b4d0431d56cc644c76d62213abd7 (diff) |
Add scanTextAtCaret option (#1632)
Diffstat (limited to 'ext/js/pages/settings')
-rw-r--r-- | ext/js/pages/settings/keyboard-shortcuts-controller.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/js/pages/settings/keyboard-shortcuts-controller.js b/ext/js/pages/settings/keyboard-shortcuts-controller.js index aeff15b6..5e7b7783 100644 --- a/ext/js/pages/settings/keyboard-shortcuts-controller.js +++ b/ext/js/pages/settings/keyboard-shortcuts-controller.js @@ -52,6 +52,7 @@ class KeyboardShortcutController { ['playAudioFromSource', {scopes: new Set(['popup', 'search']), argument: {template: 'hotkey-argument-audio-source', default: 'jpod101'}}], ['copyHostSelection', {scopes: new Set(['popup'])}], ['scanSelectedText', {scopes: new Set(['web'])}], + ['scanTextAtCaret', {scopes: new Set(['web'])}], ['toggleOption', {scopes: new Set(['popup', 'search']), argument: {template: 'hotkey-argument-setting-path', default: ''}}] ]); } |