summaryrefslogtreecommitdiff
path: root/Libraries/LibVT
AgeCommit message (Expand)Author
2020-01-26LibVT: Add parameter names in function signatures for clarityLinus Groh
2020-01-26LibVT: Rename escape$r to DECSTBM (Set Top and Bottom Margins)Linus Groh
2020-01-26LibVT: Remove empty lineLinus Groh
2020-01-26LibVT: Replace escape$h_l with SM (Set Mode) / RM (Reset Mode)Linus Groh
2020-01-26LibVT: Rename escape$f to HVP (Horizontal and Vertical Position)Linus Groh
2020-01-26LibVT: Rename escape$c to DA (Device Attributes)Linus Groh
2020-01-26LibVT: Rename escape$m to SGR (Select Graphic Rendition)Linus Groh
2020-01-26LibVT: Rename escape$H to CUP (Cursor Position)Linus Groh
2020-01-26LibVT: Rename escape$D to CUB (Cursor Backward)Linus Groh
2020-01-26LibVT: Rename escape$C to CUF (Cursor Forward)Linus Groh
2020-01-26LibVT: Rename escape$B to CUD (Cursor Down)Linus Groh
2020-01-26LibVT: Rename escape$A to CUU (Cursor Up)Linus Groh
2020-01-25LibVT: Rename escape$K and escape$J to EL and ED respectivelyAndreas Kling
2020-01-25LibVT: Fix off-by-ones in ED (Erase in Display) and EL (Erase in Line)Andreas Kling
2020-01-25LibVT: Make backspace (BS) non-destructiveAndreas Kling
2020-01-25LibVT: Support IND and RI (cursor down/up basically)Andreas Kling
2020-01-25LibVT: Rename EscapeState::ExpectBracket => GotEscapeAndreas Kling
2020-01-25LibVT: Support NEL (Next Line)Andreas Kling
2020-01-25LibVT: Support <esc>#8 to fill screen with E'sAndreas Kling
2020-01-25LibVT: Don't go into "stomp" state after moving the cursorAndreas Kling
2020-01-25LibVT: Support HVP (Horizontal and Vertical Position) (final 'f')Andreas Kling
2020-01-25LibVT: Support the DA (Device Attributes) request (final 'c')Andreas Kling
2020-01-22LibVT: Input dragged file path into the terminal on dropSergey Bugaev
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-16LibVT: enforce a minimum size of 1 column and 1 rowjoshua stein
2020-01-15LibVT: only use default bold font if it's the same size as our fontjoshua stein
2020-01-08LibVT: Relayout TerminalWidget on font changeAndreas Kling
2020-01-01LibVT: fix pixel size calculations in terminal_did_resizejoshua stein
2019-12-20Build: clean up build system, use one shared Makefilejoshua stein
2019-12-09LibGUI: Make GMenu inherit from CObjectAndreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-12-01LibVT: Fixed some debugging code that didn't compileBrandon Scott
2019-11-30LibVT: Always use Painter::clear_rect() instead of Painter::fill_rect()Andreas Kling
2019-11-25LibVT: Unbreak semi-transparent terminal background paintingAndreas Kling
2019-11-23LibVT: Don't scroll to bottom for Ctrl/Alt/ShiftAndreas Kling
2019-11-20LibVT: Don't implicitly copy the selection on double-click or mouse-upAndreas Kling
2019-11-20LibVT: Add a context menu to TerminalWidgetAndreas Kling
2019-11-20Terminal+LibVT: Switch Terminal to using explicit copy/paste actionsAndreas Kling
2019-11-20LibVT: Use the middle mouse button for pasting (instead of right)Andreas Kling
2019-11-15Terminal: Add selecting whole line on triple clickRok Povsic
2019-11-10Terminal: Clip out the scrollbar when painting the terminal bufferAndreas Kling
2019-10-22LibVT: Make inject_string() a public API so clients can use itAndreas Kling
2019-10-22LibVT+Terminal: Give TerminalWidget a hook for EOF on the ptyAndreas Kling
2019-10-21LibVT+Terminal: Don't set window title directly from TerminalWidgetAndreas Kling
2019-10-21LibVT: Make TerminalWidget's automatic size policy updates optionalAndreas Kling
2019-10-21LibVT: Make TerminalWidget logically focusable when not a main widgetAndreas Kling
2019-10-21LibVT: Move TerminalWidget from the Terminal app to hereAndreas Kling
2019-09-17Terminal: Ensure a \t always advances by at least one columnSergey Bugaev
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-05Terminal: Add some basic emoji supportSergey Bugaev