update dependencies
This commit is contained in:
parent
6ef7f7eb9e
commit
37618c49eb
5 changed files with 481 additions and 105 deletions
src/server
|
@ -164,7 +164,7 @@ export class AutoFixCommand implements Command {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (edits.length) await document.applyEdits(workspace.nvim, edits)
|
||||
if (edits.length) await document.applyEdits(edits)
|
||||
if (command) commands.executeCommand(command)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -160,7 +160,6 @@ export default class LanguageProvider {
|
|||
if (this.description.id == 'typescript') {
|
||||
this.disposables.push(
|
||||
languages.registerWorkspaceSymbolProvider(
|
||||
languageIds,
|
||||
new WorkspaceSymbolProvider(client, languageIds))
|
||||
)
|
||||
}
|
||||
|
|
|
@ -105,7 +105,7 @@ export class TypeScriptVersionProvider {
|
|||
|
||||
public get globalVersion(): TypeScriptVersion | undefined {
|
||||
let { globalTsdk } = this.configuration
|
||||
if (globalTsdk) return new TypeScriptVersion(globalTsdk)
|
||||
if (globalTsdk) return new TypeScriptVersion(workspace.expand(globalTsdk))
|
||||
return undefined
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue