This commit is contained in:
hrsh7th
2021-10-16 13:27:36 +09:00
parent 5fe7dc1eea
commit ebe040b1a9
7 changed files with 32 additions and 21 deletions

View File

@@ -34,7 +34,7 @@ source.SourceStatus.COMPLETED = 3
---@return cmp.Source
source.new = function(name, s)
local self = setmetatable({}, { __index = source })
self.id = misc.id('source')
self.id = misc.id('cmp.source.new')
self.name = name
self.source = s
self.cache = cache.new()