Nick Kocharhook

Results 181 comments of Nick Kocharhook

I would agree, most people don't know what `codemod` is. Far more people could use this tool than presently have heard of it. I think I learned of it via...

Any chance this could be prioritized? It's a very longstanding issue, and has more votes (in the form of duplicates) than most issues.

macOS is not preventing this from being fixed. `NSWindow` has a [`subtitle`](https://developer.apple.com/documentation/appkit/nswindow/subtitle) property which lets you add extra details to a window's title. You just need to loop through the...

Can you confirm that you added the files you wanted to search within after the `--` at the end of the command line?

Huh, this is unrelated to the `--` part of the provided command line, and it's not Windows specific. I'm on macOS: ``` $ fastmod "^\-\-\-\s+" "----" file.txt error: Found argument...

The solution is to put two hyphens into your command line like this: ``` fastmod "^\-\-\-\-\s+" -- "----" file.txt ``` That flag tells clap to treat everything that comes after...

I want to request a code review from @swolchok. I tried to follow [these instructions](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review), but I don't see any Reviewers in the sidebar, so I'm not able to. Hope...

Thanks for the quick reply! I'll have a look tomorrow and see about addressing your requests.

OK, I think I've addressed everything. The `terminal` module is now just a wrapper for `crossterm`. Note that I've switched from `execute!` to `print!` in most cases because this plays...

I've discovered two issues with this code. First, when the change happens on the final line and the file doesn't end with a newline, you get this: The other issue...