Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add side-by-side line wrapping mode #515

Merged
merged 10 commits into from
Oct 16, 2021
Merged

Commits on Oct 16, 2021

  1. Add fatal() function to handle exiting on errors

    Panic when testing or exit with return value 2.
    th1000s committed Oct 16, 2021
    Configuration menu
    Copy the full SHA
    636b567 View commit details
    Browse the repository at this point in the history
  2. StructOpt without Default

    This does not use the values provided by default_value, so
    validation will fail.
    th1000s committed Oct 16, 2021
    Configuration menu
    Copy the full SHA
    f467f4c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    464e9ca View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ebd008c View commit details
    Browse the repository at this point in the history
  5. Add side-by-side line wrapping

    If the current line does not fit into the panel, then
    it is not truncated but split into multiple lines. A
    wrapping symbol is placed at the end of the line. If
    the new line is short enough, it is right-aligned.
    
    Wrapping is limited to a certain number of lines
    (--wrap-max-lines), if this is exceeded the line is
    truncated by a now highlighted truncation symbol.
    To disable wrapping set this value to 0.
    th1000s committed Oct 16, 2021
    Configuration menu
    Copy the full SHA
    dda6fdb View commit details
    Browse the repository at this point in the history
  6. Rename syntect module

    dandavison authored and th1000s committed Oct 16, 2021
    Configuration menu
    Copy the full SHA
    7c93d27 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    32aef48 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1b238db View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    dbde169 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a30271a View commit details
    Browse the repository at this point in the history