themes-terminal/schemas/keybind_table.schema.json
Alex Dunmow 0a9b177f7c initial: theme plugin terminal
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/terminal.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:44 +08:00

34 lines
833 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Keybinding Table",
"description": "Two-column key + action reference table",
"type": "object",
"properties": {
"rows": {
"type": "array",
"title": "Rows",
"description": "List of keybinding rows",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"keys": {
"type": "string",
"title": "Keys",
"description": "Keybinding (e.g. Ctrl+B d)",
"x-editor": "text"
},
"action": {
"type": "string",
"title": "Action",
"description": "What the binding does",
"x-editor": "text"
}
},
"required": ["keys"]
}
}
}
}