summaryrefslogtreecommitdiff
path: root/Libraries/LibLine
AgeCommit message (Expand)Author
2020-09-26LibLine: Add a setter for the cursor positionAnotherTest
2020-09-15LibCore: Make Core::Object properties more dynamicAndreas Kling
2020-09-15LibLine: Implement ctrl-del: It does the same thing as alt-d, delete-wordNico Weber
2020-09-15LibLine: Support Alt + Arrow left/rightNico Weber
2020-09-15LibVT+LibLine: Use `1;mods` CSI parameters for ctrl/alt/shift-arrow keysNico Weber
2020-09-15LibLine: Parse CSI parameters and immediatesNico Weber
2020-09-07LibLine: Make ^R search match the input anywhere in a given lineAnotherTest
2020-09-07LibLine: Disable editing events while searchingAnotherTest
2020-09-07LibLine: Treat ^D as EOF only when the buffer is emptyAnotherTest
2020-09-06LibLine: Do not reset suggestion state immediately when encountering escAnotherTest
2020-08-31LibLine: Reset suggestion state on any non-tab keyAnotherTest
2020-08-23LibLine: Correct weird arrow up/down behaviourAnotherTest
2020-08-21LibLine: Do not ignore Ctrl-C when buffer is emptyAnotherTest
2020-08-21LibLine: Handle interrupts/window size changes internallyAnotherTest
2020-08-21LibLine: Handle Ctrl-C and Ctrl-D in a way similar to other line editorsAnotherTest
2020-08-20LibLine: Initialize the search editor when entering searchAnotherTest
2020-08-18LibLine: Make actual_rendered_string_metrics() staticAnotherTest
2020-08-18LibLine: Setup the keybindings after initialisationAnotherTest
2020-08-18LibLine: Allow the user to override (or add) keybinds in the config fileAnotherTest
2020-08-18LibLine: Make (almost) all key actions configurableAnotherTest
2020-08-18LibLine: Read configuration from a config fileAnotherTest
2020-08-17LibLine: Add a getter for num_lines/num_colsAnotherTest
2020-08-17LibLine: Uninitialized members in Editor, found by CoverityBrian Gianforcaro
2020-08-09LibLine: Only write to the standard errorAnotherTest
2020-08-07LibLine: Add Ctrl-k shortcutNico Weber
2020-08-07LibLine: Add Alt-t shortcut for transposing wordsNico Weber
2020-08-06LibLine: Add binding for Alt-backspaceNico Weber
2020-08-06LibLine: Fix "word" handling for alt-d/u/l/c/f/b and ctrl-left/rightNico Weber
2020-08-06LibLine+Shell: Remove unused split_mechanismNico Weber
2020-08-06LibLine: Add binding for Alt-.Nico Weber
2020-08-06LibLine: Add bindings for Alt-u, Alt-l, Alt-cNico Weber
2020-08-06LibLine: Add comments for which keys trigger VWERASE and VKILLNico Weber
2020-08-06LibLine: Add Alt-d binding to forward-delete a wordNico Weber
2020-08-06Shell: Start adding some alt shortcutsNico Weber
2020-08-05Unicode: Try s/codepoint/code_point/g againNico Weber
2020-08-05Revert "Unicode: s/codepoint/code_point/g"Nico Weber
2020-08-05LibLine: Check if operating on a TTY before using TTY featuresAnotherTest
2020-08-04LibLine: Removed unused private field m_prompt_metricsNico Weber
2020-08-03Unicode: s/codepoint/code_point/gAndreas Kling
2020-08-02AK: Fix overflow and mixed-signedness issues in binary_search() (#2961)Muhammad Zahalqa
2020-07-26Refactor: Change the AK::binary_search signature to use AK::Span.asynts
2020-07-13LibLine: Add Ctrl-N/P as history next/previous shortcutsNico Weber
2020-07-13LibLine: Move search-related updates into do_cursor_left/rightNico Weber
2020-07-07LibLine: Add ctrl-t shortcut for transposing charactersNico Weber
2020-07-07LibEdit: Make Ctrl-d on an empty line mean EOD againNico Weber
2020-07-06LibLine: Support Ctrl-b/f and Ctrl-dNico Weber
2020-07-06LibLine: Extract lambdas for cursor-left, cursor-right, deleteNico Weber
2020-07-06LibLine: Put ctrl-key handlers in alphabetical orderNico Weber
2020-07-06LibLine: Replace some magic numbers with a magic functionNico Weber
2020-07-06LibLine: Avoid refreshing the display when resizingAnotherTest