mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] menuconfig: make keys u/d move to the previous/next dialog page
@ 2012-07-24 14:23 Benjamin Poirier
  2012-07-24 17:38 ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Benjamin Poirier @ 2012-07-24 14:23 UTC (permalink / raw)
  To: Michal Marek; +Cc: Lucas De Marchi, Arnaud Lacombe, linux-kbuild, linux-kernel

... just like less(1) for example.

Signed-off-by: Benjamin Poirier <bpoirier@suse.de>
---
 scripts/kconfig/lxdialog/textbox.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/scripts/kconfig/lxdialog/textbox.c b/scripts/kconfig/lxdialog/textbox.c
index 154c2dd..805200f 100644
--- a/scripts/kconfig/lxdialog/textbox.c
+++ b/scripts/kconfig/lxdialog/textbox.c
@@ -190,6 +190,7 @@ do_resize:
 			break;
 		case 'B':	/* Previous page */
 		case 'b':
+		case 'u':
 		case KEY_PPAGE:
 			if (begin_reached)
 				break;
@@ -214,6 +215,7 @@ do_resize:
 			break;
 		case KEY_NPAGE:	/* Next page */
 		case ' ':
+		case 'd':
 			if (end_reached)
 				break;
 
-- 
1.7.7


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-07-26 10:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-24 14:23 [PATCH] menuconfig: make keys u/d move to the previous/next dialog page Benjamin Poirier
2012-07-24 17:38 ` Randy Dunlap
2012-07-24 20:12   ` [PATCH v2 1/2] menuconfig: add u, d, q command keys in text boxes Benjamin Poirier
2012-07-24 20:12     ` [PATCH v2 2/2] nconf: add u, d command keys in scroll windows Benjamin Poirier
2012-07-26 10:30       ` Michal Marek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome