Tim Oram
Tim Oram
Looks like this still fails if there is more than one tab character in a line.
Here's a test case (based on the one above) that still causes a panic: ```rust // rustfmt-error_on_unformatted: true // rustfmt-error_on_line_overflow: true // Part of #4968. This line has a width...
Another test case, and one I reduced from one of my projects that still causes a crash in rustfmt is leading tabs with `hard_tabs: true`. ```rust // rustfmt-error_on_unformatted: true //...
Search from within the list view was added in #797. I haven't added screenshots to the README yet, but in development, `/` starts a search, `Enter` "finishes" the search, then...
I've added searching to the list view in #797 , but I would like to add search to the patch/diff view as well. Right now, the "linear" search I used...
👋🏼 Another Crossterm user here, that just happened to have one of my projects linked in a comment. Crossterm just pushed a fix for https://github.com/crossterm-rs/crossterm/issues/500, so it's possible that the...
The upstream issue causing this to work may have been fixed. I need to update with the latest version of Crossterm and see if there are other changes that can...
I've enabled the TTY support on macOS in the latest build, so the above use case should work again. Thanks for the report, and apologies it took so long to...
I've been thinking about this issue over the past few days. I started to write a custom script that could search and replace a hash reference in the commit message....
Here is a sample script in Bash, though it's not fully tested. ```shell action="$1" # I would check action here, to ensure it was a fixup/squash/etc original_hash="$2" # read the...