Keyboard Shortcuts

Default Keymaps

Making Custom Keymaps

If you want to make custom keymaps, you can create keymap.json at the user configuration path:

  • /Users/<user>/Library/Application Support/StarUML for Mac OS.

  • C:\Users\<user>\AppData\Roaming\StarUML for Windows.

  • ~/.config/StarUML for Linux.

You can get how to edit the custom keymap file (keymap.json) at Keymaps.

Here is an example:

{
  "cmdctrl-alt-1": null,
  "cmdctrl-alt-g": "view:show-grid"
}

The first entry is to release the Ctrl+Alt+1 (Cmd+Option+1 in MacOS) key binding and the second entry is to change key binding of View > Show Grid (Command ID is view:show-grid) to Ctrl+Alt+G (Cmd+Option+G in MacOS).

If you want to know all command IDs, enter the following expression at Console (Debug > Show DevTools > Console tab).

Object.keys(app.commands.commands)

Last updated