From 62bcc6abc20632c1fe428f306858ee3064e861fd Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Mon, 2 Aug 2021 10:07:43 +0200 Subject: [PATCH] Fix missing commas in autocomplete module --- data/plugins/autocomplete.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/plugins/autocomplete.lua b/data/plugins/autocomplete.lua index 4703a63..e5265b7 100644 --- a/data/plugins/autocomplete.lua +++ b/data/plugins/autocomplete.lua @@ -12,11 +12,11 @@ local Doc = require "core.doc" config.plugins.autocomplete = { -- Amount of characters that need to be written for autocomplete - min_len = 1 + min_len = 1, -- The max amount of visible items - max_height = 6 + max_height = 6, -- The max amount of scrollable items - max_suggestions = 100 + max_suggestions = 100, } local autocomplete = {}