public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] menuconfig: Search from everywhere
@ 2015-02-09 13:12 Alexander Kuleshov
  2015-02-11 17:29 ` Paul Bolle
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Kuleshov @ 2015-02-09 13:12 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: linux-kernel, linux-kbuild, Alexander Kuleshov

If we want to see search window again, for example after typo
or for another search, we need to press on '< Exit >' and than
execute new search. Let's make '/' active everywhere.

Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
---
 scripts/kconfig/lxdialog/textbox.c | 4 ++++
 scripts/kconfig/mconf.c            | 8 ++++++++
 2 files changed, 12 insertions(+)

diff --git a/scripts/kconfig/lxdialog/textbox.c b/scripts/kconfig/lxdialog/textbox.c
index 1773319..958770d 100644
--- a/scripts/kconfig/lxdialog/textbox.c
+++ b/scripts/kconfig/lxdialog/textbox.c
@@ -141,6 +141,10 @@ do_resize:
 	while (!done) {
 		key = wgetch(dialog);
 		switch (key) {
+		case '/':
+			key = 9;
+			done = true;
+			break;
 		case 'E':	/* Exit */
 		case 'e':
 		case 'X':
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 4dd3755..d49fa45 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -446,7 +446,15 @@ again:
 					str_get(&res), 0, 0, keys, &vscroll,
 					&hscroll, &update_text, (void *)
 					&data);
+		if (dres == 9) {
+			free(sym_arr);
+			str_free(&title);
+			list_del(trail.prev);
+			str_free(&sttext);
+			search_conf();
+			return;
+		}
+
 		again = false;
 		for (i = 0; i < JUMP_NB && keys[i]; i++)
 			if (dres == keys[i]) {
-- 
2.3.0


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

end of thread, other threads:[~2015-02-11 17:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-09 13:12 [PATCH] menuconfig: Search from everywhere Alexander Kuleshov
2015-02-11 17:29 ` Paul Bolle

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