ladybird/Userland/Libraries/LibVT
ronak69 ff33f00d16 LibVT: Ability to generate each of the 32 ASCII control characters
Before, it was only possible to generate 27 control characters (from ^A
to ^Z, and ^\) (with only one possible key combination).

Now, the remaining 5 (^@, ^[, ^], ^^, and ^_) can also be generated with
control plus key combinations. :^)

Also added are the legacy aliases supported by most terminals:

    Ctrl+{2, Space} -> ^@ (NUL)
    Ctrl+3 -> ^[ (ESC)
    Ctrl+4 -> ^\
    Ctrl+5 -> ^]
    Ctrl+6 -> ^^
    Ctrl+7 -> ^_
    Ctrl+8 -> ^? (DEL)
    Ctrl+/ -> ^_

Note that now, one extra key combination corresponding to a character
that shares the same least significant five bits with the original
character (used in caret notation) can also generate a control
character. For example, in the US English keyboard layout both Ctrl+[
and Ctrl+{ (same as Ctrl+Shift+[) will generate the Escape control
character (^[).
2024-02-11 08:50:51 +01:00
..
Attribute.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CharacterSet.h
CMakeLists.txt Everywhere: Mark dependencies of most targets as PRIVATE 2022-11-01 14:49:09 +00:00
Color.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
EscapeSequenceParser.cpp Libraries: Use default constructors/destructors in LibVT 2022-03-13 22:34:38 +01:00
EscapeSequenceParser.h LibVT: Fix integer overflow when parsing long OSC sequences 2023-03-17 16:50:22 +00:00
Line.cpp Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
Line.h LibVT+Everywhere: Introduce 'automarks' and 'clear previous command' 2024-02-07 00:43:11 +01:00
Position.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
Range.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
StateMachine.txt
Terminal.cpp LibVT: Ability to generate each of the 32 ASCII control characters 2024-02-11 08:50:51 +01:00
Terminal.h LibVT+Everywhere: Introduce 'automarks' and 'clear previous command' 2024-02-07 00:43:11 +01:00
TerminalWidget.cpp LibVT: Write emoji to the pseudo-terminal master fd on emoji input 2024-02-08 16:23:25 +01:00
TerminalWidget.h LibVT+TerminalSettings: Move settings parsing functions to LibVT 2024-02-07 13:35:49 +01:00
XtermColors.h