From: Thomas Rast <trast@student.ethz.ch>
To: Jeff King <peff@peff.net>
Cc: Junio C Hamano <junio@pobox.com>,
Suraj Kurapati <sunaku@gmail.com>,
git@vger.kernel.org
Subject: [Illustration PATCH] add -i: accept single-keypress input
Date: Tue, 3 Feb 2009 09:54:08 +0100 [thread overview]
Message-ID: <1233651248-26717-1-git-send-email-trast@student.ethz.ch> (raw)
In-Reply-To: <20090203062437.GB21367@sigill.intra.peff.net>
Demonstrate how to add Term::ReadKey functionality to the main add -i
prompt function list_and_choose().
Not really great because if several input choices share a common first
character, it prompts for the _rest_ of the line, meaning the choice
of the first character cannot be undone again.
---
Jeff King wrote:
> Minor nit: the name of this variable implies that it will be used across
> all interactive commands (including any future ones).
That would be the point :-) Not sure what other tools could be
adapted however. Mergetool maybe, but I don't use that myself.
> But the
> description is intimately linked with perl. Maybe structure it like
> "here is what this does in general, but here are some specific caveats".
[...]
> But since there is only _one_ place it is used now, and since that
> program _is_ a Perl program, maybe this is overengineering.
I just figured that when another program/language comes along that
attempts to do the same, it should be changed. I suppose for shell
scripts it would read something along the lines of "if the required
'stty' calls fail, the feature is silently disabled".
> Other than that, your series looks OK to me. I think it would be nice to
> have a 5/4 that extends the feature to other menus for the sake of
> consistency. But like you, I really just use "git add -p" myself.
This patch (on top of 3/4) does roughly that. As I mentioned, I'm not
happy with the prompting behaviour for several characters (e.g. if you
go to the [p]atch menu and have several files starting with the same
character). It would be nicer to start a readline-ish prompt that
already has the character filled in, but I don't know how to do that,
and then I don't care _that_ much.
git-add--interactive.perl | 68 ++++++++++++++++++++++++++++++--------------
1 files changed, 46 insertions(+), 22 deletions(-)
diff --git a/git-add--interactive.perl b/git-add--interactive.perl
index 3aa21db..f41dd09 100755
--- a/git-add--interactive.perl
+++ b/git-add--interactive.perl
@@ -34,9 +34,11 @@ my ($diff_new_color) =
my $normal_color = $repo->get_color("", "reset");
my $use_readkey = 0;
+my %control_chars;
if ($repo->config_bool("interactive.readkey")) {
eval {
use Term::ReadKey;
+ %control_chars = GetControlChars;
$use_readkey = 1;
};
}
@@ -333,12 +335,55 @@ sub highlight_prefix {
return "$prompt_color$prefix$normal_color$remainder";
}
+sub _restore_terminal_and_die {
+ ReadMode 'restore';
+ print "\n";
+ exit 1;
+}
+
+sub prompt_single_character {
+ my ($single_chars) = @_;
+ $single_chars = "." unless defined $single_chars;
+ if ($use_readkey) {
+ local $SIG{TERM} = \&_restore_terminal_and_die;
+ local $SIG{INT} = \&_restore_terminal_and_die;
+ ReadMode 'cbreak';
+ my $key = ReadKey 0;
+ ReadMode 'restore';
+ $key = undef if $key eq $control_chars{EOF};
+ if ((defined $key) && $key !~ /$single_chars/) {
+ print colored $prompt_color, $key;
+ my $rest = <STDIN>;
+ $rest = '' unless defined $rest;
+ return $key.$rest;
+ }
+ print "$key" if defined $key;
+ print "\n";
+ return $key;
+ } else {
+ return <STDIN>;
+ }
+}
+
sub list_and_choose {
my ($opts, @stuff) = @_;
my (@chosen, @return);
my $i;
my @prefixes = find_unique_prefixes(@stuff) unless $opts->{LIST_ONLY};
+ my $single_chars = '';
+ for (@prefixes) {
+ my ($pre, $post) = @{$_};
+ if (length $pre == 1) {
+ $single_chars .= $pre;
+ }
+ }
+ for ($i = 0; $i < 10; $i++) {
+ if (10*$i > scalar @stuff) {
+ $single_chars .= $i;
+ }
+ }
+
TOPLOOP:
while (1) {
my $last_lf = 0;
@@ -392,7 +437,7 @@ sub list_and_choose {
else {
print ">> ";
}
- my $line = <STDIN>;
+ my $line = prompt_single_character('['.$single_chars.']');
if (!$line) {
print "\n";
$opts->{ON_EOF}->() if $opts->{ON_EOF};
@@ -766,27 +811,6 @@ sub diff_applies {
return close $fh;
}
-sub _restore_terminal_and_die {
- ReadMode 'restore';
- print "\n";
- exit 1;
-}
-
-sub prompt_single_character {
- if ($use_readkey) {
- local $SIG{TERM} = \&_restore_terminal_and_die;
- local $SIG{INT} = \&_restore_terminal_and_die;
- ReadMode 'cbreak';
- my $key = ReadKey 0;
- ReadMode 'restore';
- print "$key" if defined $key;
- print "\n";
- return $key;
- } else {
- return <STDIN>;
- }
-}
-
sub prompt_yesno {
my ($prompt) = @_;
while (1) {
--
1.6.1.2.513.g04677
next prev parent reply other threads:[~2009-02-03 8:55 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-01 20:35 [RFC PATCH] add -p: prompt for single characters Thomas Rast
2009-02-02 3:31 ` Suraj Kurapati
2009-02-02 8:34 ` Thomas Rast
2009-02-02 8:50 ` Junio C Hamano
2009-02-02 21:46 ` [PATCH 0/4] add -p: Term::ReadKey and more Thomas Rast
2009-02-02 21:46 ` [PATCH 1/4] add -p: change prompt separator for 'g' Thomas Rast
2009-02-02 21:46 ` [PATCH 2/4] add -p: trap Ctrl-D in 'goto' mode Thomas Rast
2009-02-02 21:46 ` [PATCH 3/4] add -p: optionally prompt for single characters Thomas Rast
2009-02-03 6:24 ` Jeff King
2009-02-03 8:54 ` Thomas Rast [this message]
2009-02-03 9:05 ` [Illustration PATCH] add -i: accept single-keypress input Junio C Hamano
2009-02-03 9:35 ` Thomas Rast
2009-02-04 5:10 ` Junio C Hamano
2009-02-04 8:51 ` Thomas Rast
2009-02-04 19:42 ` [PATCH 3/4] add -p: optionally prompt for single characters Thomas Rast
2009-02-04 20:08 ` [PATCH v2 3/4] add -p: " Thomas Rast
2009-02-04 20:08 ` [PATCH v2 4/4] add -p: print errors in separate color Thomas Rast
2009-02-04 20:12 ` [PATCH v3 3/4] add -p: prompt for single characters Thomas Rast
2009-02-04 20:12 ` [PATCH v3 4/4] add -p: print errors in separate color Thomas Rast
2009-02-04 20:40 ` [PATCH 3/4] add -p: optionally prompt for single characters Junio C Hamano
2009-02-05 8:28 ` [PATCH v4 3/4] add -p: " Thomas Rast
2009-02-06 14:01 ` Jeff King
2009-02-06 19:30 ` [PATCH] add -p: import Term::ReadKey with 'require' Thomas Rast
2009-02-06 20:30 ` Jeff King
2009-02-06 23:21 ` Thomas Rast
2009-02-07 4:54 ` Jeff King
2009-02-07 7:50 ` Junio C Hamano
2009-02-05 8:28 ` [PATCH v4 4/4] add -p: print errors in separate color Thomas Rast
2009-02-02 21:46 ` [PATCH 4/4] add -p: print errors in help colors Thomas Rast
2009-02-02 13:19 ` [RFC PATCH] add -p: prompt for single characters Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1233651248-26717-1-git-send-email-trast@student.ethz.ch \
--to=trast@student.ethz.ch \
--cc=git@vger.kernel.org \
--cc=junio@pobox.com \
--cc=peff@peff.net \
--cc=sunaku@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).