We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ccd00a commit 002e7abCopy full SHA for 002e7ab
browser/main/lib/ConfigManager.js
@@ -24,7 +24,7 @@ export const DEFAULT_CONFIG = {
24
amaEnabled: true,
25
hotkey: {
26
toggleMain: OSX ? 'Command + Alt + L' : 'Super + Alt + E',
27
- toggleMode: OSX ? 'Command + Option + M' : 'Ctrl + M'
+ toggleMode: OSX ? 'Command + Opt + M' : 'Ctrl + M'
28
},
29
ui: {
30
language: 'en',
@@ -195,7 +195,7 @@ function rewriteHotkey (config) {
195
const keys = [...Object.keys(config.hotkey)]
196
keys.forEach(key => {
197
config.hotkey[key] = config.hotkey[key].replace(/Cmd/g, 'Command')
198
- config.hotkey[key] = config.hotkey[key].replace(/Opt/g, 'Alt')
+ config.hotkey[key] = config.hotkey[key].replace(/Opt\s/g, 'Option ')
199
})
200
return config
201
}
0 commit comments