BINDINGS: list[Binding] = [Binding(
'shift+enter,
alt+enter,
ctrl+enter,
ctrl+j',
'insert_newline',
'New Line',
show=False,
priority=TrueShared key bindings for every paste-aware text area.
These are the single source of truth for shortcut keys, inherited by both
the chat input and inline prompts, which no longer define their own (were a
subclass to add its own BINDINGS, Textual would merge them across the MRO
rather than replace these). _NEWLINE_KEYS is derived from this list so
_on_key stays in sync.