···349 s - split the current hunk into smaller hunks
350 e - manually edit the current hunk
351 p - print the current hunk
0352 ? - print help
353+
354After deciding the fate for all hunks, if there is any hunk
···349 s - split the current hunk into smaller hunks
350 e - manually edit the current hunk
351 p - print the current hunk
352+ P - print the current hunk using the pager
353 ? - print help
354+
355After deciding the fate for all hunks, if there is any hunk
+3-2
add-patch.c
···1416 "/ - search for a hunk matching the given regex\n"
1417 "s - split the current hunk into smaller hunks\n"
1418 "e - manually edit the current hunk\n"
1419- "p - print the current hunk, 'P' to use the pager\n"
01420 "? - print help\n");
14211422static size_t dec_mod(size_t a, size_t m)
···1547 permitted |= ALLOW_EDIT;
1548 strbuf_addstr(&s->buf, ",e");
1549 }
1550- strbuf_addstr(&s->buf, ",p");
1551 }
1552 if (file_diff->deleted)
1553 prompt_mode_type = PROMPT_DELETION;
···1416 "/ - search for a hunk matching the given regex\n"
1417 "s - split the current hunk into smaller hunks\n"
1418 "e - manually edit the current hunk\n"
1419+ "p - print the current hunk\n"
1420+ "P - print the current hunk using the pager\n"
1421 "? - print help\n");
14221423static size_t dec_mod(size_t a, size_t m)
···1548 permitted |= ALLOW_EDIT;
1549 strbuf_addstr(&s->buf, ",e");
1550 }
1551+ strbuf_addstr(&s->buf, ",p,P");
1552 }
1553 if (file_diff->deleted)
1554 prompt_mode_type = PROMPT_DELETION;