Lines Matching full:esc
7 // sense to add them to the vte crate. An example is Esc key where we need to know if
9 // Esc char is dispatched immediately (user hits just Esc key) or if it's an escape/csi/...
27 /// `Esc` received with a flag that there's more data available.
38 /// `Esc` followed by the `[` received.
117 // More input means possible Esc sequence, just switch state and wait in handle_possible_esc()
120 // No more input means Esc key, dispatch it in handle_possible_esc()
123 // More input means possible Esc sequence, dispatch the previous Esc char in handle_possible_esc()
126 // No more input means Esc key, dispatch the previous & current Esc char in handle_possible_esc()
134 // More input means possible Esc sequence in handle_possible_esc()
138 // No more input means Esc key, dispatch it in handle_possible_esc()
443 // No more input means that the Esc character should be dispatched immediately in esc_char()
447 // There's more input so the machine should wait before dispatching Esc character in esc_char()
451 // Another Esc character, but no more input, machine should dispatch the postponed Esc in esc_char()