Closed
Description
In WorkSpaceService.cs
Consider adding
case: "inmemory":
as this is the default for the MonacoLanguageClient
Additionally for this to work, consider the following change to prevent a FileNotFoundException in CodeActionHandler.cs
IReadOnlyDictionary<string, MarkerCorrection> corrections = null;
try
{
var file = _workspaceService.GetFile(request.TextDocument.Uri);
corrections = await _analysisService.GetMostRecentCodeActionsForFileAsync(file).ConfigureAwait(false);
}
catch (Exception ex) //if (corrections == null)
{
return Array.Empty<CommandOrCodeAction>();
}