abouttreesummaryrefslogcommitdiff
path: root/check_layout.py
AgeCommit message (Collapse)AuthorFilesLines
2023-08-05Tweak check_layout.pyJules Aguillon1-3/+11
- Warn about missing esc, tab, f11_placeholder and f12_placeholder. - Don't check non-layout files and special layouts.
2023-08-02check_layout.py: Warn about editing and function keysJules Aguillon1-0/+9
2023-07-30Allow more than 2 layoutsJules Aguillon1-2/+2
The two layout selection options are replaced by a ListGroupPreference that allow to enter an arbitrary amount of layouts. The "switch_second" and "switch_second_back" keys are replaced by "switch_forward" and "switch_backward", which allow to cycle through the selected layouts in two directions. Layouts are changed to place these two key on the space bar. The backward key is not shown if there's only two layouts.
2023-06-22Allow to specify a layout scriptJules Aguillon1-0/+3
Add the `script` attribute, which will be used to implement script-specific extra keys.
2023-06-03Add automated checks on layoutsJules Aguillon1-0/+72
The script `check_layout.py` checks some properties about layouts. No check is an error. The result of running this script on every layouts is stored in the file `check_layout.output`, which is useful to track changes. Add make rules to run this script as well as `sync_translations`.