Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardize capitilization of "Go to" #135869

Merged
merged 1 commit into from
Oct 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vs/editor/common/config/editorOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4556,7 +4556,7 @@ export const EditorOptions = {
'- `ctrlCmd` refers to a value the setting can take and should not be localized.',
'- `Control` and `Command` refer to the modifier keys Ctrl or Cmd on the keyboard and can be localized.'
]
}, "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).")
}, "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).")
}
)),
multiCursorPaste: register(new EditorStringEnumOption(
Expand Down
4 changes: 2 additions & 2 deletions src/vs/editor/contrib/gotoSymbol/goToCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -672,8 +672,8 @@ class GenericGoToLocationAction extends SymbolNavigationAction {
) {
super(config, {
id: 'editor.action.goToLocation',
label: nls.localize('label.generic', "Go To Any Symbol"),
alias: 'Go To Any Symbol',
label: nls.localize('label.generic', "Go to Any Symbol"),
alias: 'Go to Any Symbol',
precondition: ContextKeyExpr.and(
PeekContext.notInPeekEditor,
EditorContextKeys.isInWalkThroughSnippet.toNegated()
Expand Down
8 changes: 4 additions & 4 deletions src/vs/workbench/contrib/debug/browser/debugEditorActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,8 @@ class GoToNextBreakpointAction extends GoToBreakpointAction {
constructor() {
super(true, {
id: 'editor.debug.action.goToNextBreakpoint',
label: nls.localize('goToNextBreakpoint', "Debug: Go To Next Breakpoint"),
alias: 'Debug: Go To Next Breakpoint',
label: nls.localize('goToNextBreakpoint', "Debug: Go to Next Breakpoint"),
alias: 'Debug: Go to Next Breakpoint',
precondition: CONTEXT_DEBUGGERS_AVAILABLE
});
}
Expand All @@ -434,8 +434,8 @@ class GoToPreviousBreakpointAction extends GoToBreakpointAction {
constructor() {
super(false, {
id: 'editor.debug.action.goToPreviousBreakpoint',
label: nls.localize('goToPreviousBreakpoint', "Debug: Go To Previous Breakpoint"),
alias: 'Debug: Go To Previous Breakpoint',
label: nls.localize('goToPreviousBreakpoint', "Debug: Go to Previous Breakpoint"),
alias: 'Debug: Go to Previous Breakpoint',
precondition: CONTEXT_DEBUGGERS_AVAILABLE
});
}
Expand Down