The release is an alpha and includes jump_items_sql(), letting plugins contribute navigable items to the Jump to menu.
AI Quick Take
- New jump_items_sql() hook lets plugins add searchable navigation entries to Datasette’s Jump to menu.
- Try it immediately on latest.datasette.io by pressing /; the feature ships in alpha as 1.0a30.
Datasette 1.0a30, released as an alpha, introduces a customizable "Jump to..." command palette and a new plugin hook, jump_items_sql(), which allows plugins to add entries to the menu’s searchable index. The new menu can be tried on latest.datasette.io by pressing the / key, demonstrating the immediate UI change and how plugin-contributed items appear in the same quick-access interface. The announcement frames this as an extensibility feature rather than a cosmetic tweak.
Practically, the change centralizes navigation: instead of building bespoke links or UI surfaces, plugin authors can register database - driven items that users will hit via a single keyboard shortcut. For teams publishing many datasets or views with Datasette, that reduces the number of places users must look to reach commonly used tables, saved queries, or plugin-provided resources. The jump_items_sql() hook is the explicit extension point named in the release, so it’s the supported mechanism for populating the menu.
Because 1.0a30 is an alpha release, this is primarily an invitation to test and iterate. Developers and plugin maintainers should validate how contributed items are indexed and surfaced, and operators should verify behavior in their deployment pipelines before adopting it widely. Keep an eye on subsequent releases and example plugins to see which integration patterns become standard - those will determine how quickly teams change navigation practices and fold the Jump to menu into their Datasette workflows.