git-add -i/-p: Change prompt separater from slash to comma
Otherwise the find command '/' soon to be introduced will be hard to see. Signed-off-by: William Pursell <bill.pursell@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
2ea3c17189
commit
57886bc7fb
@ -929,22 +929,22 @@ sub patch_update_file {
|
|||||||
for ($i = 0; $i < $ix; $i++) {
|
for ($i = 0; $i < $ix; $i++) {
|
||||||
if (!defined $hunk[$i]{USE}) {
|
if (!defined $hunk[$i]{USE}) {
|
||||||
$prev = 1;
|
$prev = 1;
|
||||||
$other .= '/k';
|
$other .= ',k';
|
||||||
last;
|
last;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($ix) {
|
if ($ix) {
|
||||||
$other .= '/K';
|
$other .= ',K';
|
||||||
}
|
}
|
||||||
for ($i = $ix + 1; $i < $num; $i++) {
|
for ($i = $ix + 1; $i < $num; $i++) {
|
||||||
if (!defined $hunk[$i]{USE}) {
|
if (!defined $hunk[$i]{USE}) {
|
||||||
$next = 1;
|
$next = 1;
|
||||||
$other .= '/j';
|
$other .= ',j';
|
||||||
last;
|
last;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($ix < $num - 1) {
|
if ($ix < $num - 1) {
|
||||||
$other .= '/J';
|
$other .= ',J';
|
||||||
}
|
}
|
||||||
if ($num > 1) {
|
if ($num > 1) {
|
||||||
$other .= '/g';
|
$other .= '/g';
|
||||||
@ -958,13 +958,13 @@ sub patch_update_file {
|
|||||||
last if (!$undecided);
|
last if (!$undecided);
|
||||||
|
|
||||||
if (hunk_splittable($hunk[$ix]{TEXT})) {
|
if (hunk_splittable($hunk[$ix]{TEXT})) {
|
||||||
$other .= '/s';
|
$other .= ',s';
|
||||||
}
|
}
|
||||||
$other .= '/e';
|
$other .= ',e';
|
||||||
for (@{$hunk[$ix]{DISPLAY}}) {
|
for (@{$hunk[$ix]{DISPLAY}}) {
|
||||||
print;
|
print;
|
||||||
}
|
}
|
||||||
print colored $prompt_color, "Stage this hunk [y/n/a/d$other/?]? ";
|
print colored $prompt_color, "Stage this hunk [y,n,a,d$other,?]? ";
|
||||||
my $line = <STDIN>;
|
my $line = <STDIN>;
|
||||||
if ($line) {
|
if ($line) {
|
||||||
if ($line =~ /^y/i) {
|
if ($line =~ /^y/i) {
|
||||||
|
Reference in New Issue
Block a user