Skip to content

Commit d8b96f1

Browse files
committed
Standerdize captilization of "Go to"
1 parent 27ef170 commit d8b96f1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/vs/editor/common/config/editorOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4556,7 +4556,7 @@ export const EditorOptions = {
45564556
'- `ctrlCmd` refers to a value the setting can take and should not be localized.',
45574557
'- `Control` and `Command` refer to the modifier keys Ctrl or Cmd on the keyboard and can be localized.'
45584558
]
4559-
}, "The modifier to be used to add multiple cursors with the mouse. The Go To Definition and Open Link mouse gestures will adapt such that they do not conflict with the multicursor modifier. [Read more](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).")
4559+
}, "The modifier to be used to add multiple cursors with the mouse. The Go to Definition and Open Link mouse gestures will adapt such that they do not conflict with the multicursor modifier. [Read more](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).")
45604560
}
45614561
)),
45624562
multiCursorPaste: register(new EditorStringEnumOption(

src/vs/editor/contrib/gotoSymbol/goToCommands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,8 +672,8 @@ class GenericGoToLocationAction extends SymbolNavigationAction {
672672
) {
673673
super(config, {
674674
id: 'editor.action.goToLocation',
675-
label: nls.localize('label.generic', "Go To Any Symbol"),
676-
alias: 'Go To Any Symbol',
675+
label: nls.localize('label.generic', "Go to Any Symbol"),
676+
alias: 'Go to Any Symbol',
677677
precondition: ContextKeyExpr.and(
678678
PeekContext.notInPeekEditor,
679679
EditorContextKeys.isInWalkThroughSnippet.toNegated()

src/vs/workbench/contrib/debug/browser/debugEditorActions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,8 @@ class GoToNextBreakpointAction extends GoToBreakpointAction {
423423
constructor() {
424424
super(true, {
425425
id: 'editor.debug.action.goToNextBreakpoint',
426-
label: nls.localize('goToNextBreakpoint', "Debug: Go To Next Breakpoint"),
427-
alias: 'Debug: Go To Next Breakpoint',
426+
label: nls.localize('goToNextBreakpoint', "Debug: Go to Next Breakpoint"),
427+
alias: 'Debug: Go to Next Breakpoint',
428428
precondition: CONTEXT_DEBUGGERS_AVAILABLE
429429
});
430430
}
@@ -434,8 +434,8 @@ class GoToPreviousBreakpointAction extends GoToBreakpointAction {
434434
constructor() {
435435
super(false, {
436436
id: 'editor.debug.action.goToPreviousBreakpoint',
437-
label: nls.localize('goToPreviousBreakpoint', "Debug: Go To Previous Breakpoint"),
438-
alias: 'Debug: Go To Previous Breakpoint',
437+
label: nls.localize('goToPreviousBreakpoint', "Debug: Go to Previous Breakpoint"),
438+
alias: 'Debug: Go to Previous Breakpoint',
439439
precondition: CONTEXT_DEBUGGERS_AVAILABLE
440440
});
441441
}

0 commit comments

Comments
 (0)