Source

hotkey_binder/defaultKeys.js

/**Add more elements here, along with a valid value for key
* Elements keys must have the same name as their ID
**/

export const defaultKeys = {
  "New Circuit": "Shift + N",
  "Save Online": "Ctrl + S",
  "Save Offline": "Ctrl + Alt + S",
  "Download as Image": "Ctrl + D",
  "Open Offline": "Ctrl + O",
  "Insert Sub-circuit": "Shift + C",
  "Combinational Analysis": "Shift + A",
  // "Start Plot": "Ctrl + P",
  "Direction Up": "Up",
  "Direction Down": "Down",
  "Direction Left": "Left",
  "Direction Right": "Right",
  "Insert Label": "Ctrl + L",
  "Label Direction Up": "Alt + Up",
  "Label Direction Down": "Alt + Down",
  "Label Direction Left": "Alt + Left",
  "Label Direction Right": "Alt + Right",
  "Move Element Up": "Shift + Up",
  "Move Element Down": "Shift + Down",
  "Move Element Left": "Shift + Left",
  "Move Element Right": "Shift + Right",
  "Hotkey Preference": "F8",
  "Open Documentation": "F1",
};