-
Notifications
You must be signed in to change notification settings - Fork 396
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
wrap --help output, fix rust 1.80 build #1440
Conversation
Thanks! I tried this out and it seems like a good improvement to me. (Tangential: Ultimately I feel that the lengthy man-page style output should be sent into a pager.) |
Now that |
(There's a formatter error here.) |
The fmt is fixed, but sending the output into a pager via |
Hm. Is it the |
src/cli.rs
Outdated
{ | ||
write!(&mut writer, "{}", help.ansi()).unwrap(); | ||
// dtor? | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It wasn't the writer drop impl/destructor but the one of output_type!
Now with pager support, even listens to The Oh and I found |
This one has conflicts for us to resolve. Sorry for letting it drag on. |
The full help output has to be regenerated (some ansi2md util would help), and I have to check that the big moved textblock in |
If something isn't working correctly, or you have a feature request, please open an issue at https://github.com/dandavison/delta/issues. | ||
|
||
For a short help summary, please use delta -h. | ||
"## |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The result of all this looks really nice.
#[derive(Debug, Default)] | ||
pub struct PagerCfg { | ||
pub navigate: bool, | ||
pub show_themes: bool, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I should have added a comment on this code...
if config.show_themes {
p.arg("+n");
}
If you happen to know or discover what the logic is do feel free to add a comment!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+cmd
, "specified cmd to be executed", so on start is it as if the user pressed 'n' to continue the search.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right thanks, I'll add that as a comment.
Version(ver) => Some(Version(ver)), | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This all looks like a nice new organization of the command processing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! This will be a big improvement. The paging and new styling of the lengthy sections are really nice.
The full help output has to be regenerated
Just redirecting --help
into that file and fixing the enclosing backticks, right -- or is something more needed?
Use new, smaller PagerCfg instead of the full Config, as for pager output only 3 variables are relevant. oneshot_write() can be used to write paginated output, usually before exiting.
Unicode and somewhat ANSI aware, can add indentation (skippable) and can also skip wrapping lines by using configurable magic prefixes.
manual/src/full---help-output.md
Outdated
|
||
`delta file_1 file_2` is equivalent to `diff -u file_1 file_2 | delta`. | ||
`delta file_1 file_2` is equivalent to `diff -u file_1 file_2 | | ||
delta`. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that is annoying, doesn't fit in 80 lines!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be happy to lose the underscores; I think I'd debated them once or twice with myself.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, now it fits!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, am redirecting --help
into the markdown.
Also, I wrote... another wrap function 🙂. This time for the help output because I needed variable indentation.
Git config | ||
|
||
By default, delta takes settings from a section named "delta" in git config |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This mentions the git config, but should also mention how to set pager = delta
. This way --help
is a stand-alone manual, at least for the basics.
And this quick start section should be right after Arguments:
, but that will require some more --help
surgery.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This mentions the git config, but should also mention how to set pager = delta. This way --help is a stand-alone manual, at least for the basics.
Agreed. Very happy for you to add this but let me know if you want me to do anything.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR is long enough, lets improve the help content in a different PR :)
Tell clap to not wrap output, append `after_long_help()` (with matching ansi codes in this section), then manually wrap the result. The help output is now paginated if writing to a terminal. All code paths flow back to main(), so an invoked pager is properly waited for (by the OutputType drop impl).
Upgrade "time" (and its dependency chain rooted at "plist"), the previous version did not build with 1.80. Tell the new 'unexpected_cfgs' lint that 'tarpaulin_include' is okay Mark one clippy lint as a false positive
Also fixed the rust 1.80 build, note the Cargo.* changes. FTR, the build for the time crate was:
(Currently, v0.17.0, |
I've approved this one already; please merge at will! |
I think this PR accidentally caused |
@dandavison would it be possible to cut a new release with this Rust 1.80 fix? It would make it possible to upgrade delta in nixpkgs (NixOS/nixpkgs#332957) |
@ofalvai will do! I'll ping here when it's done. |
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [dandavison/delta](https://github.com/dandavison/delta) | minor | `0.17.0` -> `0.18.0` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>dandavison/delta (dandavison/delta)</summary> ### [`v0.18.0`](https://github.com/dandavison/delta/releases/tag/0.18.0) [Compare Source](dandavison/delta@0.17.0...0.18.0) As usual, tons of excellent contributions, all but one not by me! [@​th1000s](https://github.com/th1000s) has made a huge number of important and difficult improvements to delta and helped with many issues over the few years since the project started, and so I'm happy to say that he's co-maintaining the project with me nowadays. Thanks to all contributors for the improvements below! #### What's Changed - Link to Repository from Manual by [@​bash](https://github.com/bash) in dandavison/delta#1657 - Stop highlighting unchanged whitespace by [@​phillipwood](https://github.com/phillipwood) in dandavison/delta#1659 - Add .gitattributes rules for rust files by [@​phillipwood](https://github.com/phillipwood) in dandavison/delta#1245 - Repair --default-language, and highlight using full filename by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1549 - tests: prevent parallel env var access by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1681 - CI: fix macOS build by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1696 - Only use `nosort` in bash <4.4 by [@​martinml](https://github.com/martinml) in dandavison/delta#1683 - Don't read git files when --no-gitconfig is given + unused variables by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1728 - tests: add insta for snapshot testing by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1739 - tests: set terminal width to 43 by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1741 - Fix panic when blame-palette is empty by [@​thorio](https://github.com/thorio) in dandavison/delta#1737 - Make relative-paths work with binary files by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1740 - Fix github links from master to main by [@​madeddie](https://github.com/madeddie) in dandavison/delta#1709 - Update `terminal-colorsaurus` by [@​bash](https://github.com/bash) in dandavison/delta#1699 - Make less version >= 633 behave like previous versions wrt. Nerd Fonts by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1762 - Update `catppuccin-latte` casing in `LIGHT_SYNTAX_THEMES` list by [@​injust](https://github.com/injust) in dandavison/delta#1745 - deps: bump libc from 0.2.153 to 0.2.155 by [@​wxpppp](https://github.com/wxpppp) in dandavison/delta#1715 - Add missing `--file-*-label` option to `--navigate` docs by [@​injust](https://github.com/injust) in dandavison/delta#1744 - Fix copy-paste typo by [@​injust](https://github.com/injust) in dandavison/delta#1767 - Update syntect to 5.2.0 by [@​timhillgit](https://github.com/timhillgit) in dandavison/delta#1672 - Disable light mode detection in tests by [@​bash](https://github.com/bash) in dandavison/delta#1765 - Add --max-syntax-highlighting-length, set to 400 by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1746 - chore: cleanup brew formula file in favor of core tap by [@​chenrui333](https://github.com/chenrui333) in dandavison/delta#1773 - wrap --help output, fix rust 1.80 build by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1440 - Fix delta-toggle shell script by [@​dandavison](https://github.com/dandavison) in dandavison/delta#1794 - Do not wrap short help (-h) output by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1800 - Implement --diff-args by [@​dandavison](https://github.com/dandavison) in dandavison/delta#1697 - Handle ambiguous diff header, '--- ' can also be present in a minus hunk by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1787 - cd: build binaries targeting GNU libc on ubuntu-20.04, not latest by [@​th1000s](https://github.com/th1000s) in dandavison/delta#1805 #### New Contributors - [@​martinml](https://github.com/martinml) made their first contribution in dandavison/delta#1683 - [@​thorio](https://github.com/thorio) made their first contribution in dandavison/delta#1737 - [@​madeddie](https://github.com/madeddie) made their first contribution in dandavison/delta#1709 - [@​injust](https://github.com/injust) made their first contribution in dandavison/delta#1745 - [@​wxpppp](https://github.com/wxpppp) made their first contribution in dandavison/delta#1715 - [@​timhillgit](https://github.com/timhillgit) made their first contribution in dandavison/delta#1672 - [@​chenrui333](https://github.com/chenrui333) made their first contribution in dandavison/delta#1773 **Full Changelog**: dandavison/delta@0.17.0...0.18.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiXX0=-->
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [dandavison/delta](https://togithub.com/dandavison/delta) | minor | `0.17.0` -> `0.18.0` | --- ### Release Notes <details> <summary>dandavison/delta (dandavison/delta)</summary> ### [`v0.18.0`](https://togithub.com/dandavison/delta/releases/tag/0.18.0) [Compare Source](https://togithub.com/dandavison/delta/compare/0.17.0...0.18.0) As usual, tons of excellent contributions, all but one not by me! [@​th1000s](https://togithub.com/th1000s) has made a huge number of important and difficult improvements to delta and helped with many issues over the few years since the project started, and so I'm happy to say that he's co-maintaining the project with me nowadays. Thanks to all contributors for the improvements below! #### What's Changed - Link to Repository from Manual by [@​bash](https://togithub.com/bash) in [https://github.com/dandavison/delta/pull/1657](https://togithub.com/dandavison/delta/pull/1657) - Stop highlighting unchanged whitespace by [@​phillipwood](https://togithub.com/phillipwood) in [https://github.com/dandavison/delta/pull/1659](https://togithub.com/dandavison/delta/pull/1659) - Add .gitattributes rules for rust files by [@​phillipwood](https://togithub.com/phillipwood) in [https://github.com/dandavison/delta/pull/1245](https://togithub.com/dandavison/delta/pull/1245) - Repair --default-language, and highlight using full filename by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1549](https://togithub.com/dandavison/delta/pull/1549) - tests: prevent parallel env var access by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1681](https://togithub.com/dandavison/delta/pull/1681) - CI: fix macOS build by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1696](https://togithub.com/dandavison/delta/pull/1696) - Only use `nosort` in bash <4.4 by [@​martinml](https://togithub.com/martinml) in [https://github.com/dandavison/delta/pull/1683](https://togithub.com/dandavison/delta/pull/1683) - Don't read git files when --no-gitconfig is given + unused variables by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1728](https://togithub.com/dandavison/delta/pull/1728) - tests: add insta for snapshot testing by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1739](https://togithub.com/dandavison/delta/pull/1739) - tests: set terminal width to 43 by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1741](https://togithub.com/dandavison/delta/pull/1741) - Fix panic when blame-palette is empty by [@​thorio](https://togithub.com/thorio) in [https://github.com/dandavison/delta/pull/1737](https://togithub.com/dandavison/delta/pull/1737) - Make relative-paths work with binary files by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1740](https://togithub.com/dandavison/delta/pull/1740) - Fix github links from master to main by [@​madeddie](https://togithub.com/madeddie) in [https://github.com/dandavison/delta/pull/1709](https://togithub.com/dandavison/delta/pull/1709) - Update `terminal-colorsaurus` by [@​bash](https://togithub.com/bash) in [https://github.com/dandavison/delta/pull/1699](https://togithub.com/dandavison/delta/pull/1699) - Make less version >= 633 behave like previous versions wrt. Nerd Fonts by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1762](https://togithub.com/dandavison/delta/pull/1762) - Update `catppuccin-latte` casing in `LIGHT_SYNTAX_THEMES` list by [@​injust](https://togithub.com/injust) in [https://github.com/dandavison/delta/pull/1745](https://togithub.com/dandavison/delta/pull/1745) - deps: bump libc from 0.2.153 to 0.2.155 by [@​wxpppp](https://togithub.com/wxpppp) in [https://github.com/dandavison/delta/pull/1715](https://togithub.com/dandavison/delta/pull/1715) - Add missing `--file-*-label` option to `--navigate` docs by [@​injust](https://togithub.com/injust) in [https://github.com/dandavison/delta/pull/1744](https://togithub.com/dandavison/delta/pull/1744) - Fix copy-paste typo by [@​injust](https://togithub.com/injust) in [https://github.com/dandavison/delta/pull/1767](https://togithub.com/dandavison/delta/pull/1767) - Update syntect to 5.2.0 by [@​timhillgit](https://togithub.com/timhillgit) in [https://github.com/dandavison/delta/pull/1672](https://togithub.com/dandavison/delta/pull/1672) - Disable light mode detection in tests by [@​bash](https://togithub.com/bash) in [https://github.com/dandavison/delta/pull/1765](https://togithub.com/dandavison/delta/pull/1765) - Add --max-syntax-highlighting-length, set to 400 by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1746](https://togithub.com/dandavison/delta/pull/1746) - chore: cleanup brew formula file in favor of core tap by [@​chenrui333](https://togithub.com/chenrui333) in [https://github.com/dandavison/delta/pull/1773](https://togithub.com/dandavison/delta/pull/1773) - wrap --help output, fix rust 1.80 build by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1440](https://togithub.com/dandavison/delta/pull/1440) - Fix delta-toggle shell script by [@​dandavison](https://togithub.com/dandavison) in [https://github.com/dandavison/delta/pull/1794](https://togithub.com/dandavison/delta/pull/1794) - Do not wrap short help (-h) output by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1800](https://togithub.com/dandavison/delta/pull/1800) - Implement --diff-args by [@​dandavison](https://togithub.com/dandavison) in [https://github.com/dandavison/delta/pull/1697](https://togithub.com/dandavison/delta/pull/1697) - Handle ambiguous diff header, '--- ' can also be present in a minus hunk by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1787](https://togithub.com/dandavison/delta/pull/1787) - cd: build binaries targeting GNU libc on ubuntu-20.04, not latest by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1805](https://togithub.com/dandavison/delta/pull/1805) #### New Contributors - [@​martinml](https://togithub.com/martinml) made their first contribution in [https://github.com/dandavison/delta/pull/1683](https://togithub.com/dandavison/delta/pull/1683) - [@​thorio](https://togithub.com/thorio) made their first contribution in [https://github.com/dandavison/delta/pull/1737](https://togithub.com/dandavison/delta/pull/1737) - [@​madeddie](https://togithub.com/madeddie) made their first contribution in [https://github.com/dandavison/delta/pull/1709](https://togithub.com/dandavison/delta/pull/1709) - [@​injust](https://togithub.com/injust) made their first contribution in [https://github.com/dandavison/delta/pull/1745](https://togithub.com/dandavison/delta/pull/1745) - [@​wxpppp](https://togithub.com/wxpppp) made their first contribution in [https://github.com/dandavison/delta/pull/1715](https://togithub.com/dandavison/delta/pull/1715) - [@​timhillgit](https://togithub.com/timhillgit) made their first contribution in [https://github.com/dandavison/delta/pull/1672](https://togithub.com/dandavison/delta/pull/1672) - [@​chenrui333](https://togithub.com/chenrui333) made their first contribution in [https://github.com/dandavison/delta/pull/1773](https://togithub.com/dandavison/delta/pull/1773) **Full Changelog**: dandavison/delta@0.17.0...0.18.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/d-issy/dotfiles). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [dandavison/delta](https://togithub.com/dandavison/delta) | minor | `0.17.0` -> `0.18.0` | --- ### Release Notes <details> <summary>dandavison/delta (dandavison/delta)</summary> ### [`v0.18.0`](https://togithub.com/dandavison/delta/releases/tag/0.18.0) [Compare Source](https://togithub.com/dandavison/delta/compare/0.17.0...0.18.0) As usual, tons of excellent contributions, all but one not by me! [@​th1000s](https://togithub.com/th1000s) has made a huge number of important and difficult improvements to delta and helped with many issues over the few years since the project started, and so I'm happy to say that he's co-maintaining the project with me nowadays. Thanks to all contributors for the improvements below! #### What's Changed - Link to Repository from Manual by [@​bash](https://togithub.com/bash) in [https://github.com/dandavison/delta/pull/1657](https://togithub.com/dandavison/delta/pull/1657) - Stop highlighting unchanged whitespace by [@​phillipwood](https://togithub.com/phillipwood) in [https://github.com/dandavison/delta/pull/1659](https://togithub.com/dandavison/delta/pull/1659) - Add .gitattributes rules for rust files by [@​phillipwood](https://togithub.com/phillipwood) in [https://github.com/dandavison/delta/pull/1245](https://togithub.com/dandavison/delta/pull/1245) - Repair --default-language, and highlight using full filename by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1549](https://togithub.com/dandavison/delta/pull/1549) - tests: prevent parallel env var access by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1681](https://togithub.com/dandavison/delta/pull/1681) - CI: fix macOS build by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1696](https://togithub.com/dandavison/delta/pull/1696) - Only use `nosort` in bash <4.4 by [@​martinml](https://togithub.com/martinml) in [https://github.com/dandavison/delta/pull/1683](https://togithub.com/dandavison/delta/pull/1683) - Don't read git files when --no-gitconfig is given + unused variables by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1728](https://togithub.com/dandavison/delta/pull/1728) - tests: add insta for snapshot testing by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1739](https://togithub.com/dandavison/delta/pull/1739) - tests: set terminal width to 43 by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1741](https://togithub.com/dandavison/delta/pull/1741) - Fix panic when blame-palette is empty by [@​thorio](https://togithub.com/thorio) in [https://github.com/dandavison/delta/pull/1737](https://togithub.com/dandavison/delta/pull/1737) - Make relative-paths work with binary files by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1740](https://togithub.com/dandavison/delta/pull/1740) - Fix github links from master to main by [@​madeddie](https://togithub.com/madeddie) in [https://github.com/dandavison/delta/pull/1709](https://togithub.com/dandavison/delta/pull/1709) - Update `terminal-colorsaurus` by [@​bash](https://togithub.com/bash) in [https://github.com/dandavison/delta/pull/1699](https://togithub.com/dandavison/delta/pull/1699) - Make less version >= 633 behave like previous versions wrt. Nerd Fonts by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1762](https://togithub.com/dandavison/delta/pull/1762) - Update `catppuccin-latte` casing in `LIGHT_SYNTAX_THEMES` list by [@​injust](https://togithub.com/injust) in [https://github.com/dandavison/delta/pull/1745](https://togithub.com/dandavison/delta/pull/1745) - deps: bump libc from 0.2.153 to 0.2.155 by [@​wxpppp](https://togithub.com/wxpppp) in [https://github.com/dandavison/delta/pull/1715](https://togithub.com/dandavison/delta/pull/1715) - Add missing `--file-*-label` option to `--navigate` docs by [@​injust](https://togithub.com/injust) in [https://github.com/dandavison/delta/pull/1744](https://togithub.com/dandavison/delta/pull/1744) - Fix copy-paste typo by [@​injust](https://togithub.com/injust) in [https://github.com/dandavison/delta/pull/1767](https://togithub.com/dandavison/delta/pull/1767) - Update syntect to 5.2.0 by [@​timhillgit](https://togithub.com/timhillgit) in [https://github.com/dandavison/delta/pull/1672](https://togithub.com/dandavison/delta/pull/1672) - Disable light mode detection in tests by [@​bash](https://togithub.com/bash) in [https://github.com/dandavison/delta/pull/1765](https://togithub.com/dandavison/delta/pull/1765) - Add --max-syntax-highlighting-length, set to 400 by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1746](https://togithub.com/dandavison/delta/pull/1746) - chore: cleanup brew formula file in favor of core tap by [@​chenrui333](https://togithub.com/chenrui333) in [https://github.com/dandavison/delta/pull/1773](https://togithub.com/dandavison/delta/pull/1773) - wrap --help output, fix rust 1.80 build by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1440](https://togithub.com/dandavison/delta/pull/1440) - Fix delta-toggle shell script by [@​dandavison](https://togithub.com/dandavison) in [https://github.com/dandavison/delta/pull/1794](https://togithub.com/dandavison/delta/pull/1794) - Do not wrap short help (-h) output by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1800](https://togithub.com/dandavison/delta/pull/1800) - Implement --diff-args by [@​dandavison](https://togithub.com/dandavison) in [https://github.com/dandavison/delta/pull/1697](https://togithub.com/dandavison/delta/pull/1697) - Handle ambiguous diff header, '--- ' can also be present in a minus hunk by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1787](https://togithub.com/dandavison/delta/pull/1787) - cd: build binaries targeting GNU libc on ubuntu-20.04, not latest by [@​th1000s](https://togithub.com/th1000s) in [https://github.com/dandavison/delta/pull/1805](https://togithub.com/dandavison/delta/pull/1805) #### New Contributors - [@​martinml](https://togithub.com/martinml) made their first contribution in [https://github.com/dandavison/delta/pull/1683](https://togithub.com/dandavison/delta/pull/1683) - [@​thorio](https://togithub.com/thorio) made their first contribution in [https://github.com/dandavison/delta/pull/1737](https://togithub.com/dandavison/delta/pull/1737) - [@​madeddie](https://togithub.com/madeddie) made their first contribution in [https://github.com/dandavison/delta/pull/1709](https://togithub.com/dandavison/delta/pull/1709) - [@​injust](https://togithub.com/injust) made their first contribution in [https://github.com/dandavison/delta/pull/1745](https://togithub.com/dandavison/delta/pull/1745) - [@​wxpppp](https://togithub.com/wxpppp) made their first contribution in [https://github.com/dandavison/delta/pull/1715](https://togithub.com/dandavison/delta/pull/1715) - [@​timhillgit](https://togithub.com/timhillgit) made their first contribution in [https://github.com/dandavison/delta/pull/1672](https://togithub.com/dandavison/delta/pull/1672) - [@​chenrui333](https://togithub.com/chenrui333) made their first contribution in [https://github.com/dandavison/delta/pull/1773](https://togithub.com/dandavison/delta/pull/1773) **Full Changelog**: dandavison/delta@0.17.0...0.18.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/izumin5210/dotfiles). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: izumin5210-update-aqua-checksum[bot] <169593670+izumin5210-update-aqua-checksum[bot]@users.noreply.github.com>
Set clap option
max_term_width
, so the help output is by default as wide as the terminal or this max value. Then manually wrap theafter_long_help()
text (only on demand) to the same width usingtextwrap
. Also use matching ansi codes in this section.Another try to improve deltas --help output, and I finally can use textwrap! But now
--version
and--help
is handled manually. Another possibility would be to manually construct the pieces of clapsStyledStr
(...which is returned fromrender_help()
and according todbg!()
different from the simple String wrapper?render_help() = StyledStr { pieces: [ (None, "A viewer for git and diff output",), (..)] }
).CC @tjquillan @nickelc @FGasper