File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 998998 "omnisharp.analyzeOpenDocumentsOnly" : {
999999 "type" : " boolean" ,
10001000 "default" : false ,
1001- "description" : " Will only run analyzers against open files when 'enableRoslynAnalyzers' is true"
1001+ "description" : " Only run analyzers against open files when 'enableRoslynAnalyzers' is true"
10021002 },
10031003 "omnisharp.testRunSettings" : {
10041004 "type" : [
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class FileOpenCloseProvider implements IDisposable {
2929 this . _disposable = new CompositeDisposable ( this . _diagnostics ,
3030 vscode . workspace . onDidOpenTextDocument ( this . _onDocumentOpen , this ) ,
3131 vscode . workspace . onDidCloseTextDocument ( this . _onDocumentClose , this ) ,
32- vscode . window . onDidChangeActiveTextEditor ( this . _onActiveTextEdtiorChnage , this )
32+ vscode . window . onDidChangeActiveTextEditor ( this . _onActiveTextEditorChnage , this )
3333 ) ;
3434 }
3535
@@ -49,7 +49,7 @@ class FileOpenCloseProvider implements IDisposable {
4949 await serverUtils . fileClose ( this . _server , { FileName : e . fileName } ) ;
5050 }
5151
52- private async _onActiveTextEdtiorChnage ( e : vscode . TextEditor ) {
52+ private async _onActiveTextEditorChnage ( e : vscode . TextEditor ) {
5353 if ( shouldIgnoreDocument ( e . document ) ) {
5454 return ;
5555 }
You can’t perform that action at this time.
0 commit comments