`showkey -a` display: - Shift + Enter: `^[[27;2;13~` - Control + Enter: `^[[27;5;13~` - Control + Shift + Enter: `^[[27;6;13~` First, prompt-toolkit miss `c-enter`, `s-enter`, ... Second, Even if I ```python @add_key_binding(*["escape", "[27;2;13~"]) def _(event: KeyPressEvent) -> None: print("hi") ``` It still cannot work. Weirdly, the following keys can work. - Alt + Control + Enter - Alt + Control + Shift + Enter ```python @add_key_binding(["escape", *"[27;8;13~"]) def _(event: KeyPressEvent) ->jkone: print("hi") ```