feat(tracker/gioui): user-defined keybindings.yml override defaults

The behaviour of the user-defined keybindings.yml was changed.
It now documents just the changes from the default keybindings.
An empty line with no action means "unbind the key".
This commit is contained in:
5684185+vsariola@users.noreply.github.com
2024-10-28 10:00:10 +02:00
parent eb9413b9a0
commit daf7fb1519
2 changed files with 22 additions and 6 deletions

View File

@ -1,3 +1,11 @@
# You can place your custom keybindings.yml in the Sointu config directory e.g.
# AppData\Roaming\sointu\keybindings.yml on Windows. There, you can override the
# default keybindings with your own. The format is the same as below. A
# keybinding without any action means unbinding the key. For example, the line
#
# - {key: "A"}
#
# will stop the A key from sending NoteOff events.
- {key: "C", shortcut: true, action: "Copy"}
- {key: "V", shortcut: true, action: "Paste"}
- {key: "A", shortcut: true, action: "SelectAll"}