summaryrefslogtreecommitdiff
path: root/Libraries/LibLine
AgeCommit message (Expand)Author
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
2020-06-30LibLine: Correctly display suggestions on multiline promptsAnotherTest
2020-06-27LibLine: Support multiline editingAnotherTest
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-06-07LibLine: Correctly handle line content overflow when on last lineAnotherTest
2020-06-07LibLine: Use more descriptive names for row/columnAnotherTest
2020-06-01LibLine: Handle interrupts againAnotherTest
2020-05-29LibLine: Remove unused header in Span.hEmanuele Torre
2020-05-29Meta: Add a script check the presence of "#pragma once" in header filesEmanuele Torre
2020-05-27LibLine: Send over some properties when being inspectedAnotherTest
2020-05-27LibLine: Use Core::EventLoop for outer read loopAnotherTest
2020-05-26LibLine: Use LibC's getline() when the terminal claims no support for escape ...AnotherTest
2020-05-26AK: Rename FileSystemPath -> LexicalPathSergey Bugaev
2020-05-26LibLine: Don't add empty lines to historyLinus Groh
2020-05-25LibLine: Change get_line to return a Result<String, Error>AnotherTest
2020-05-23LibLine: Default to resetting styles when a cell has no styles setAnotherTest
2020-05-23LibLine: Make the comments follow the project styleAnotherTest
2020-05-23LibLine: Properly paginate suggestions in XtermSuggestionDisplayAnotherTest
2020-05-23 LibLine: Add a constructor for CompletionSuggestions purely for comparisonAnotherTest
2020-05-23LibLine: Refactor suggestion handling and display logic outAnotherTest
2020-05-23LibLine: Correctly handle multibyte codepoints in suggestionsAnotherTest
2020-05-23LibLine: Make suggest() utf8-awareAnotherTest
2020-05-21LibLine: Hide debug output behind SUGGESTIONS_DEBUG defineLinus Groh