summaryrefslogtreecommitdiff
path: root/Libraries/LibLine
AgeCommit message (Expand)Author
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
2020-05-21LibLine: Correctly track the completion start and endAnotherTest
2020-05-21LibLine: Support applying styles to suggestionsAnotherTest
2020-05-20LibLine: Unify completion hooks and adapt its usersAnotherTest
2020-05-19LibLine: Default to resolving Spans as byte offsetsAnotherTest
2020-05-19LibLine: Handle <return>s in incomplete data correctlyAnotherTest
2020-05-18LibLine: Handle unicode correctlyAnotherTest
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-13LibLine: Add a hook to run when an interrupt is handledAnotherTest
2020-05-12LibLine: Fix suggestion spacing regressionAnotherTest
2020-05-11LibLine: Show suggestions in pages if they don't fit on the screenAnotherTest
2020-05-10LibLine: Support RGB colorsAnotherTest
2020-05-10LibLine: Expose actual_rendered_string_length & accept newlines in promptAnotherTest
2020-05-02LibLine: Handle ^L while in search modeAnotherTest
2020-04-30LibLine: Reset inline_search_cursor along with cursorAnotherTest
2020-04-30Shell+LibLine: Handle escaped characters correctlyAnotherTest
2020-04-29LibLine: Actually fix build :^)Andreas Kling
2020-04-28LibLine: Properly mark the result of read() as ignoredAnotherTest
2020-04-28LibLine: Drop stray input before doing vt_dsrAnotherTest
2020-04-28LibLine: Handle initialize() internallyAnotherTest
2020-04-28LibLine: Ignore interrupts unless actively editingAnotherTest
2020-04-22LibLine: Do not ignore ^C and do not finish() after interruptAnotherTest
2020-04-22LibLine: Avoid OOB access when one of the suggestions is the prefixAnotherTest
2020-04-20LibLine: Autocomplete already-complete suggestionsAnotherTest
2020-04-20LibLine: Handle ctrl-{left,right}_arrow by jumping between wordsAnotherTest
2020-04-20LibLine: Properly handle ^C and do not return after being interruptedAnotherTest
2020-04-20LibLine: Implement searching via up/down arrow keysAnotherTest
2020-04-20LibLine: Implement ^R searchingAnotherTest
2020-04-19LibLine: Clear trailing trivia when cycling if the suggestion has anyAnotherTest
2020-04-19LibLine: Allow suggestions to have trailing trivia stringsAnotherTest
2020-04-19LibLine: Complete only common prefixes, and tweak suggestion logicAnotherTest