Fix missing commas in autocomplete module
This commit is contained in:
parent
5155f7a2a4
commit
62bcc6abc2
|
@ -12,11 +12,11 @@ local Doc = require "core.doc"
|
||||||
|
|
||||||
config.plugins.autocomplete = {
|
config.plugins.autocomplete = {
|
||||||
-- Amount of characters that need to be written for autocomplete
|
-- Amount of characters that need to be written for autocomplete
|
||||||
min_len = 1
|
min_len = 1,
|
||||||
-- The max amount of visible items
|
-- The max amount of visible items
|
||||||
max_height = 6
|
max_height = 6,
|
||||||
-- The max amount of scrollable items
|
-- The max amount of scrollable items
|
||||||
max_suggestions = 100
|
max_suggestions = 100,
|
||||||
}
|
}
|
||||||
|
|
||||||
local autocomplete = {}
|
local autocomplete = {}
|
||||||
|
|
Loading…
Reference in New Issue