Skip to content

Commit

Permalink
chore(plugin): fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chemzqm committed Sep 28, 2018
1 parent c41e7f0 commit fdb57b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export default class Plugin extends EventEmitter {
services.init()
commandManager.init(nvim, this)
completion.init(nvim)
this.on('registExtensions', args => {
this.on('registExtensions', async args => {
for (let folder of args as string[]) {
extensions.loadExtension(folder)
await extensions.loadExtension(folder)
}
})
clean() // tslint:disable-line
Expand Down

0 comments on commit fdb57b3

Please sign in to comment.