Skip to content

Commit a085dab

Browse files
author
Benjamin Pasero
committed
a bit more monaco => code
1 parent 6cc07c8 commit a085dab

24 files changed

Lines changed: 29 additions & 31 deletions

src/vs/base/browser/ui/actionbar/actionbar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export class BaseActionItem extends EventEmitter implements IActionItem {
193193

194194
export class Separator extends Action {
195195

196-
public static ID = 'actions.monaco.separator';
196+
public static ID = 'vs.actions.separator';
197197

198198
constructor(label?: string, order?) {
199199
super(Separator.ID, label, label ? 'separator text' : 'separator');

src/vs/workbench/browser/actionBarRegistry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export interface IActionBarRegistry {
268268

269269
/**
270270
* Registers an Actionbar contributor. It will be called to contribute actions to all the action bars
271-
* that are used in the Monaco Workbench in the given scope.
271+
* that are used in the Workbench in the given scope.
272272
*/
273273
registerActionBarContributor(scope: string, ctor: IConstructorSignature0<ActionBarContributor>): void;
274274

src/vs/workbench/browser/composite.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export abstract class Composite extends WorkbenchComponent implements IComposite
6060
}
6161

6262
/**
63-
* Note: Clients should not call this method, the monaco workbench calls this
63+
* Note: Clients should not call this method, the workbench calls this
6464
* method. Calling it otherwise may result in unexpected behavior.
6565
*
6666
* Called to create this composite on the provided builder. This method is only
@@ -82,7 +82,7 @@ export abstract class Composite extends WorkbenchComponent implements IComposite
8282
}
8383

8484
/**
85-
* Note: Clients should not call this method, the monaco workbench calls this
85+
* Note: Clients should not call this method, the workbench calls this
8686
* method. Calling it otherwise may result in unexpected behavior.
8787
*
8888
* Called to indicate that the composite has become visible or hidden. This method
@@ -193,7 +193,7 @@ export abstract class Composite extends WorkbenchComponent implements IComposite
193193
}
194194

195195
/**
196-
* A composite descriptor is a leightweight descriptor of a composite in the monaco workbench.
196+
* A composite descriptor is a leightweight descriptor of a composite in the workbench.
197197
*/
198198
export abstract class CompositeDescriptor<T extends Composite> extends AsyncDescriptor<T> {
199199
public id: string;

src/vs/workbench/browser/layout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ interface ComputedStyles {
4848
}
4949

5050
/**
51-
* The workbench layout is responsible to lay out all parts that make the Monaco Workbench.
51+
* The workbench layout is responsible to lay out all parts that make the Workbench.
5252
*/
5353
export class WorkbenchLayout implements IVerticalSashLayoutProvider, IHorizontalSashLayoutProvider {
5454

src/vs/workbench/browser/panel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {Composite, CompositeDescriptor, CompositeRegistry} from 'vs/workbench/br
1010
export abstract class Panel extends Composite implements IPanel { }
1111

1212
/**
13-
* A panel descriptor is a leightweight descriptor of a panel in the monaco workbench.
13+
* A panel descriptor is a leightweight descriptor of a panel in the workbench.
1414
*/
1515
export class PanelDescriptor extends CompositeDescriptor<Panel> {
1616
constructor(moduleId: string, ctorName: string, id: string, name: string, cssClass?: string) {

src/vs/workbench/browser/part.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export abstract class Part extends WorkbenchComponent {
2525
}
2626

2727
/**
28-
* Note: Clients should not call this method, the monaco workbench calls this
28+
* Note: Clients should not call this method, the workbench calls this
2929
* method. Calling it otherwise may result in unexpected behavior.
3030
*
3131
* Called to create title, content and status area of the part.

src/vs/workbench/browser/parts/editor/baseEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export abstract class BaseEditor extends Panel implements IEditor {
6262
}
6363

6464
/**
65-
* Note: Clients should not call this method, the monaco workbench calls this
65+
* Note: Clients should not call this method, the workbench calls this
6666
* method. Calling it otherwise may result in unexpected behavior.
6767
*
6868
* Sets the given input with the options to the part. An editor has to deal with the

src/vs/workbench/browser/parts/editor/stringEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {IThemeService} from 'vs/workbench/services/themes/common/themeService';
2727

2828
/**
2929
* An editor implementation that is capable of showing string inputs or promise inputs that resolve to a string.
30-
* Uses the Monaco TextEditor widget to show the contents.
30+
* Uses the TextEditor widget to show the contents.
3131
*/
3232
export class StringEditor extends BaseTextEditor {
3333

src/vs/workbench/browser/parts/editor/textDiffEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import {IKeybindingService, IKeybindingContextKey} from 'vs/platform/keybinding/
4040
import {IThemeService} from 'vs/workbench/services/themes/common/themeService';
4141

4242
/**
43-
* The text editor that leverages the monaco diff text editor for the editing experience.
43+
* The text editor that leverages the diff text editor for the editing experience.
4444
*/
4545
export class TextDiffEditor extends BaseTextEditor {
4646

src/vs/workbench/browser/parts/editor/textEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {IThemeService} from 'vs/workbench/services/themes/common/themeService';
3333
const EDITOR_VIEW_STATE_PREFERENCE_KEY = 'editorViewState';
3434

3535
/**
36-
* The base class of editors that leverage the monaco text editor for the editing experience. This class is only intended to
36+
* The base class of editors that leverage the text editor for the editing experience. This class is only intended to
3737
* be subclassed and not instantiated.
3838
*/
3939
export abstract class BaseTextEditor extends BaseEditor {

0 commit comments

Comments
 (0)