Rename locals to scopes

This commit is contained in:
hrsh7th
2022-03-30 20:49:14 +09:00
parent dc3113a79f
commit 2de24d3e1c
3 changed files with 11 additions and 11 deletions

View File

@@ -339,14 +339,14 @@ autocmd.subscribe('CursorMoved', function()
end)
autocmd.subscribe('InsertEnter', function()
cmp.config.compare.locals:update()
cmp.config.compare.scopes:update()
end)
cmp.event:on('complete_done', function(evt)
if evt.entry then
cmp.config.compare.recently_used:add_entry(evt.entry)
end
cmp.config.compare.locals:update()
cmp.config.compare.scopes:update()
end)
cmp.event:on('confirm_done', function(evt)