You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Options: DeepL App Shortcut: Sets the key combo for PopClip to use to activate DeepL. Leave this blank to use the default DeepL combo which is "⌘+C+C". Otherwise type a key combo like "control option command D". (See Key Combo String Format.)
I expected to see this option in the extension settings menu, but it's not there. The default combo of "⌘+C+C" is very annoying, because it leads to many false triggers when copying text in general and you accidentally press ⌘+C twice. I would like to set a different combo, and have it work with PopClip.
It looks like it's present in the source code, but it has hidden: true:
const comboOption = {
identifier: 'combo',
label: 'DeepL App Shortcut',
type: 'string',
hidden: true,
description: "Leave this blank to use '⌘+C+C', the default. Or type a shortcut like 'control option command D', if you have set custom DeepL preferences."
};
I spent some time to figure out how to modify the extension, and changed it to hidden: false. It seems to work, is there some reason not to enable it? If you enable it, you may want to edit the description for the modeOption, and the link for the key combo string format on the extension's page should be to https://www.popclip.app/dev/key-press-actions#string-format
The text was updated successfully, but these errors were encountered:
From DeepL Translator — PopClip Extensions:
I expected to see this option in the extension settings menu, but it's not there. The default combo of "⌘+C+C" is very annoying, because it leads to many false triggers when copying text in general and you accidentally press ⌘+C twice. I would like to set a different combo, and have it work with PopClip.
It looks like it's present in the source code, but it has
hidden: true
:https://github.com/pilotmoon/PopClip-Extensions/blob/master/source/DeepLTranslator.popclipext/deepl.js
I spent some time to figure out how to modify the extension, and changed it to
hidden: false
. It seems to work, is there some reason not to enable it? If you enable it, you may want to edit the description for themodeOption
, and the link for the key combo string format on the extension's page should be to https://www.popclip.app/dev/key-press-actions#string-formatThe text was updated successfully, but these errors were encountered: