{$_('menu.file')}
{$_('menu.new')}
⌘N
Load from desktop... ⌘O
Load from Google Drive...
Duplicate ⌘D
Export... ⌘S
Export all... ⇧⌘S
Edit
Undo ⌘Z
Redo ⇧⌘Z
Delete ⌘⌫
Delete all⇧⌘⌫
Help
Quick help ⌘H
User guide
Settings
Distance units
Metric
Imperial
Velocity units
Speed
Pace
Temperature units
Celsius
Fahrenheit
Show distance markers
Show direction markers
{
e.stopImmediatePropagation();
if (e.key === 'o' && (e.metaKey || e.ctrlKey)) {
triggerFileInput();
e.preventDefault();
} else if (e.key === 'd' && (e.metaKey || e.ctrlKey)) {
duplicateSelectedFiles();
e.preventDefault();
} else if ((e.key === 's' || e.key == 'S') && (e.metaKey || e.ctrlKey)) {
if (e.shiftKey) {
exportAllFiles();
} else {
exportSelectedFiles();
}
e.preventDefault();
} else if ((e.key === 'Backspace' || e.key === 'Delete') && (e.metaKey || e.ctrlKey)) {
if (e.shiftKey) {
removeAllFiles();
} else {
removeSelectedFiles();
}
e.preventDefault();
} else if (e.key === 'a' && (e.metaKey || e.ctrlKey)) {
$selectFiles.selectAllFiles();
e.preventDefault();
}
}}
/>