Oleg Tkachenko
Oleg Tkachenko
Visual Studio telemetry indicates one of the top UI delays is caused by this symbol: stevecadwallader.codemaid.dll!SteveCadwallader.CodeMaid.Integration.Events.TextEditorEventListener.TextEditorEvents_LineChanged The scenarios appears to be building large solution. On each Output Window update TextEditorEventListener.TextEditorEvents_LineChanged...
In [modern editor commanding](https://github.com/Microsoft/vs-editor-api/wiki/Modern-Editor-Commanding-API-Revisited) CommandArgs serves as both unique command identifier and a container for command specific arguments. While most commands do not accept any input arguments and their CommandArgs...
GetCompletion() method is executed on background thread and it makes some non thread safe calls like _textViewAdapter.GetCaretPos(), which will crash VS if the text view is already closed by the...