We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 313632f commit 49488a4Copy full SHA for 49488a4
bugscanx/utils/common.py
@@ -41,6 +41,7 @@ def get_input(
41
style=DEFAULT_STYLE,
42
validate_input=True,
43
instruction="",
44
+ long_instruction="",
45
mandatory=True,
46
allow_comma_separated=True,
47
**kwargs
@@ -68,7 +69,8 @@ def get_input(
68
69
"choices": choices,
70
"multiselect": multiselect,
71
"transformer": transformer,
- "show_cursor": kwargs.pop("show_cursor", False)
72
+ "show_cursor": kwargs.pop("show_cursor", False),
73
+ "long_instruction": long_instruction or "Use ↑ ↓ to navigate, Enter to select."
74
},
75
"file": {
76
"only_files": kwargs.pop("only_files", True)
0 commit comments