summaryrefslogtreecommitdiff
path: root/menuconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'menuconfig.py')
-rwxr-xr-xmenuconfig.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/menuconfig.py b/menuconfig.py
index 9055d5b..3fb1ebc 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -1608,7 +1608,9 @@ def _draw_jump_to_dialog(edit_box, matches_win, bot_sep_win, help_win,
for i in range(scroll,
min(scroll + matches_win.getmaxyx()[0], len(matches))):
- sym_str = matches[i].item.name
+ sym = matches[i].item
+
+ sym_str = "{}(={})".format(sym.name, sym.str_value)
if matches[i].prompt:
sym_str += ' "{}"'.format(matches[i].prompt[0])