Results 10 comments of Seito Tanaka

Thanks for giving me a good feature request. I will check a little more to see if this change has any negative impact.

I thought pruning was also good for the purpose of this tool to clean up. I would proceed with the following policy: With `--dry-run`: Do not pruning Without `--dry-run`: `git...

Hi, thank you for your suggestions. It might be good. Currently, this tool focuses on the "clean up safely." If we have a closed PR, something wrong created the PR,...

Yes, it's good to be able to delete it as an option! If you want to add functionality, we also welcome PR submitted.

This is the same issue [here](https://github.com/komagata/eastasianwidth/issues/7#issuecomment-1003531848) ```java System.out.println(UCharacter.getIntPropertyValue('ì', UProperty.EAST_ASIAN_WIDTH)); // UCharacter.EastAsianWidth.AMBIGUOUS; ```

Using [icu4j](https://github.com/unicode-org/icu), all these characters are ambiguous, so 2 is correct. ```java System.out.println(UCharacter.getIntPropertyValue('ˋ', UProperty.EAST_ASIAN_WIDTH)); // UCharacter.EastAsianWidth.AMBIGUOUS; System.out.println(UCharacter.getIntPropertyValue('ˇ', UProperty.EAST_ASIAN_WIDTH)); // UCharacter.EastAsianWidth.AMBIGUOUS; System.out.println(UCharacter.getIntPropertyValue('˙', UProperty.EAST_ASIAN_WIDTH)); // UCharacter.EastAsianWidth.AMBIGUOUS; System.out.println(UCharacter.getIntPropertyValue('ˊ', UProperty.EAST_ASIAN_WIDTH)); // UCharacter.EastAsianWidth.AMBIGUOUS; ``` If...

Thanks for the suggestion. Please also refer to this discussion about automatic execution. - https://github.com/seachicken/gh-poi/discussions/117 I'm not planning on supporting it positively because it goes beyond the scope of a...

gh poi is a tool responsible for cleaning up branches, so it's beyond the scope of this tool. Users can customize it by running a command like `gh poi &&...

Hi, I made [gh poi](https://github.com/seachicken/gh-poi). It can clean up local branches even in squash-merged PRs and forked repositories, so I think it fulfills the function of `gh pr cleanup --all`....

Thanks for that good point! Since worktree is a standard git feature, it should be considered when running. Adding a worktree cleanup function will require a slightly larger design change,...