mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 04:53:33 +01:00
Replace all instances off "Focussed" with "Focused" except ContextKey (#32904)
* Replace focussed with focused * Replace Focussed with Focused
This commit is contained in:
committed by
Benjamin Pasero
parent
ad0bd9b777
commit
f3bf53f6b8
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user