From 4a8884ef70d50e997da76997e27630e685c70745 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Tue, 17 Nov 2020 12:33:57 +0100 Subject: [PATCH] Increase default max limits for symbols The previous limit, 2000, was may be too small and may prevent auto-complete from working for some big source file. --- data/core/config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/core/config.lua b/data/core/config.lua index 4f58f825..d6f87bcd 100644 --- a/data/core/config.lua +++ b/data/core/config.lua @@ -16,7 +16,7 @@ config.line_height = 1.2 config.indent_size = 2 config.tab_type = "soft" config.line_limit = 80 -config.max_symbols = 2000 +config.max_symbols = 4000 config.max_project_files = 2000 return config