Skip to content

Commit

Permalink
git-add -i/-p: Change prompt separater from slash to comma
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
William Pursell authored and Junio C Hamano committed Feb 2, 2009
1 parent 2ea3c17 commit 57886bc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions git-add--interactive.perl
Original file line number Diff line number Diff line change
Expand Up @@ -929,22 +929,22 @@ sub patch_update_file {
for ($i = 0; $i < $ix; $i++) {
if (!defined $hunk[$i]{USE}) {
$prev = 1;
$other .= '/k';
$other .= ',k';
last;
}
}
if ($ix) {
$other .= '/K';
$other .= ',K';
}
for ($i = $ix + 1; $i < $num; $i++) {
if (!defined $hunk[$i]{USE}) {
$next = 1;
$other .= '/j';
$other .= ',j';
last;
}
}
if ($ix < $num - 1) {
$other .= '/J';
$other .= ',J';
}
if ($num > 1) {
$other .= '/g';
Expand All @@ -958,13 +958,13 @@ sub patch_update_file {
last if (!$undecided);

if (hunk_splittable($hunk[$ix]{TEXT})) {
$other .= '/s';
$other .= ',s';
}
$other .= '/e';
$other .= ',e';
for (@{$hunk[$ix]{DISPLAY}}) {
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>;
if ($line) {
if ($line =~ /^y/i) {
Expand Down

0 comments on commit 57886bc

Please sign in to comment.