diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-05-14 13:02:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 17:02:33 +0000 |
commit | 266c8c3a3f0d6f8c39832bfdc0cc88b88c2b710b (patch) | |
tree | 360198d216a15b828714a40435a6139b28c28d2b /ext/js/pages/settings/keyboard-shortcuts-controller.js | |
parent | ba288277a5e73026f7b0c07d993aa00a5e66c332 (diff) |
Make Scan selected text lazy and add Scan text at selection (#915)
* Add Scan selected text lazy
* Remove extra spaces
* Improve naming
* Use disallowExpandSelection instead of "lazy"
* Use "keyword arguments" for _scanSelectedText
* Revert Use "keyword arguments" for _scanSelectedText
Diffstat (limited to 'ext/js/pages/settings/keyboard-shortcuts-controller.js')
-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 1e00d907..a6d23d82 100644 --- a/ext/js/pages/settings/keyboard-shortcuts-controller.js +++ b/ext/js/pages/settings/keyboard-shortcuts-controller.js @@ -69,6 +69,7 @@ export 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'])}], + ['scanTextAtSelection', {scopes: new Set(['web'])}], ['scanTextAtCaret', {scopes: new Set(['web'])}], ['toggleOption', {scopes: new Set(['popup', 'search']), argument: {template: 'hotkey-argument-setting-path', default: ''}}] ]); |