We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 429c365 commit f12d8e0Copy full SHA for f12d8e0
1 file changed
bugscanx/utils/file_selector.py
@@ -23,17 +23,19 @@ def file_manager(start_dir):
23
short_dir = "\\".join(current_dir.parts[-3:])
24
25
print(f"[cyan] Current Dir: {short_dir}[/cyan]")
26
- lines_printed += 1
+ print()
27
+ lines_printed += 2
28
29
for idx, item in enumerate(directories + files, 1):
30
color = "yellow" if item.is_dir() else "white"
31
print(f" {idx}. [{color}]{item.name}[/{color}]")
32
lines_printed += 1
33
- print("\n[blue] 0. Previous folder[/blue]")
34
+ print("[blue] 0. cd ..[/blue]")
35
36
lines_printed += 2
37
- selection = get_input("Select number or filename")
38
+ selection = get_input("Enter number or filename")
39
40
41
previous_lines = lines_printed
0 commit comments