Replace all instances off "Focussed" with "Focused" except ContextKey (#32904)

* Replace focussed with focused

* Replace Focussed with Focused
This commit is contained in:
Christopher Leidigh
2017-08-22 05:13:07 -04:00
committed by Benjamin Pasero
parent ad0bd9b777
commit f3bf53f6b8
24 changed files with 108 additions and 107 deletions

View File

@@ -76,7 +76,7 @@ function findEditor(model: IModel, codeEditorService: ICodeEditorService): IComm
for (const editor of codeEditorService.listCodeEditors()) {
if (editor.getModel() === model) {
if (editor.isFocused()) {
return editor; // favour focussed editor if there are multiple
return editor; // favour focused editor if there are multiple
}
candidate = editor;