///
Mind Map Wizard offers a set of keyboard shortcuts to streamline your workflow and enhance productivity when interacting with mind maps. These shortcuts allow for quick navigation, editing, and manage
59 views
~59 views from guests
Guest views are estimated from total page views. These include anonymous visitors and users who weren't logged in when they viewed the page.
Mind Map Wizard offers a set of keyboard shortcuts to streamline your workflow and enhance productivity when interacting with mind maps. These shortcuts allow for quick navigation, editing, and management without needing to use the mouse.
The following table lists the keyboard shortcuts available in Mind Map Wizard:
| Shortcut | Action |
|---|---|
| <kbd>K</kbd> | Opens the search popup to find all your mind maps. |
| <kbd>E</kbd> | Toggles the edit mode for the current mind map. |
| <kbd>D</kbd> | Initiates the download process for the current mind map. |
| <kbd>G</kbd> | Regenerates the current mind map using AI. |
| <kbd>F</kbd> | Fits the mind map to the screen, adjusting zoom and position. |
The keyboard shortcuts are handled by the initializeKeyboardShortcuts function located in scripts/mmw.js. This function attaches a keydown event listener to the entire document.
Upon a key press, the listener checks:
input or textarea field. This prevents shortcuts from interfering with text entry.K, E, D, G, and F.If a recognized shortcut key is pressed and the user is not typing, the function e.preventDefault() is called to stop the browser's default action for that key. Then, the corresponding application function is triggered:
openSearchMindmapsPopup().edit-mode-button.download-mindmap-btn.regenerate-button.mm-fit button, which typically triggers the markmapInstance.fit() function.These keyboard shortcuts are part of the broader [Core Features] that enhance the user experience in Mind Map Wizard.