From 143d56c6913e7e5fab6bf18f656f7a9fb916855b Mon Sep 17 00:00:00 2001 From: Sorunome Date: Sat, 24 Jul 2021 18:07:50 +0200 Subject: [PATCH] feat: Increase the amount of suggestions for the input bar --- lib/widgets/input_bar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/input_bar.dart b/lib/widgets/input_bar.dart index 82fa5d864..758442c8b 100644 --- a/lib/widgets/input_bar.dart +++ b/lib/widgets/input_bar.dart @@ -43,7 +43,7 @@ class InputBar extends StatelessWidget { final searchText = controller.text.substring(0, controller.selection.baseOffset); final ret = >[]; - const maxResults = 10; + const maxResults = 30; final commandMatch = RegExp(r'^\/([\w]*)$').firstMatch(searchText); if (commandMatch != null) {