Hi, On Fri, Jun 7, 2024 at 11:06 AM Konstantin Tokarev <annulen@xxxxxxxxx> wrote: > > Hello all, > > Is there any option in git to make `git add -p` split hunks by > default, just like 's' was pressed automatically? If no, how would one > implement such an option? It doesn't look like there is any option to do that. About implementing it, it depends if it would be a command line option or a config option. Anyway I think you might want to take a look at the run_add_p() function in "add-patch.c". > My use case: I've recently started working with big LaTeX document > having every paragraph as a single line. As a result, hunks quickly > become larger than screen, so that splitting is highly desirable. Best!