Skip to content

Commit 6d0beca

Browse files
authored
Merge pull request microsoft#94409 from gregvanl/CodeLens
CodeLens should be one word
2 parents 6526fe0 + 4eded87 commit 6d0beca

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

extensions/merge-conflict/package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"command.compare": "Compare Current Conflict",
1515
"config.title": "Merge Conflict",
1616
"config.autoNavigateNextConflictEnabled": "Whether to automatically navigate to the next merge conflict after resolving a merge conflict.",
17-
"config.codeLensEnabled": "Create a Code Lens for merge conflict blocks within editor.",
17+
"config.codeLensEnabled": "Create a CodeLens for merge conflict blocks within editor.",
1818
"config.decoratorsEnabled": "Create decorators for merge conflict blocks within editor.",
1919
"config.diffViewPosition": "Controls where the diff view should be opened when comparing changes in merge conflicts.",
2020
"config.diffViewPosition.current": "Open the diff view in the current editor group.",
2121
"config.diffViewPosition.beside": "Open the diff view next to the current editor group.",
2222
"config.diffViewPosition.below": "Open the diff view below the current editor group."
23-
}
23+
}

src/vs/editor/common/view/editorColorRegistry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const editorActiveLineNumber = registerColor('editorLineNumber.activeFore
3030

3131
export const editorRuler = registerColor('editorRuler.foreground', { dark: '#5A5A5A', light: Color.lightgrey, hc: Color.white }, nls.localize('editorRuler', 'Color of the editor rulers.'));
3232

33-
export const editorCodeLensForeground = registerColor('editorCodeLens.foreground', { dark: '#999999', light: '#999999', hc: '#999999' }, nls.localize('editorCodeLensForeground', 'Foreground color of editor code lenses'));
33+
export const editorCodeLensForeground = registerColor('editorCodeLens.foreground', { dark: '#999999', light: '#999999', hc: '#999999' }, nls.localize('editorCodeLensForeground', 'Foreground color of editor CodeLens'));
3434

3535
export const editorBracketMatchBackground = registerColor('editorBracketMatch.background', { dark: '#0064001a', light: '#0064001a', hc: '#0064001a' }, nls.localize('editorBracketMatchBackground', 'Background color behind matching brackets'));
3636
export const editorBracketMatchBorder = registerColor('editorBracketMatch.border', { dark: '#888', light: '#B9B9B9', hc: contrastBorder }, nls.localize('editorBracketMatchBorder', 'Color for matching brackets boxes'));

src/vs/editor/contrib/codelens/codelensController.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,8 @@ registerEditorAction(class ShowLensesInCurrentLine extends EditorAction {
419419
super({
420420
id: 'codelens.showLensesInCurrentLine',
421421
precondition: EditorContextKeys.hasCodeLensProvider,
422-
label: localize('showLensOnLine', "Show Code Lens Commands For Current Line"),
423-
alias: 'Show Code Lens Commands For Current Line',
422+
label: localize('showLensOnLine', "Show CodeLens Commands For Current Line"),
423+
alias: 'Show CodeLens Commands For Current Line',
424424
});
425425
}
426426

0 commit comments

Comments
 (0)