From c4e1a9cbd03c213c35e506f05bca6b950941abe9 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 82fa5d86..758442c8 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) {