Skip to content

Commit 53d4d65

Browse files
spholzalimpfard
authored andcommitted
LibShell: Increase program-aware completion timeout
The old timeout was too low when running in riscv64 QEMU (with TCG).
1 parent cde17a5 commit 53d4d65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Userland/Libraries/LibShell/Shell.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1997,7 +1997,7 @@ ErrorOr<Vector<Line::CompletionSuggestion>> Shell::complete_via_program_itself(s
19971997
true);
19981998

19991999
Vector<Line::CompletionSuggestion> suggestions;
2000-
auto timer = Core::Timer::create_single_shot(300, [&] {
2000+
auto timer = Core::Timer::create_single_shot(3000, [&] {
20012001
Core::EventLoop::current().quit(1);
20022002
});
20032003
timer->start();

0 commit comments

Comments
 (0)