We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db11576 commit 1f4ef6aCopy full SHA for 1f4ef6a
1 file changed
src/vs/editor/browser/services/codeEditorService.ts
@@ -26,11 +26,11 @@ export interface ICodeEditorService {
26
27
addCodeEditor(editor: ICodeEditor): void;
28
removeCodeEditor(editor: ICodeEditor): void;
29
- listCodeEditors(): ICodeEditor[];
+ listCodeEditors(): readonly ICodeEditor[];
30
31
addDiffEditor(editor: IDiffEditor): void;
32
removeDiffEditor(editor: IDiffEditor): void;
33
- listDiffEditors(): IDiffEditor[];
+ listDiffEditors(): readonly IDiffEditor[];
34
35
/**
36
* Returns the current focused code editor (if the focus is in the editor or in an editor widget) or
0 commit comments