Skip to content

Commit e871aaf

Browse files
authored
Improve wording in notification (microsoft#167834)
Fixes microsoft#167542: Improve wording in notification
1 parent 94916c0 commit e871aaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/editor/browser/widget/codeEditorWidget.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1618,7 +1618,7 @@ export class CodeEditorWidget extends Disposable implements editorBrowser.ICodeE
16181618
if (e.reachedMaxCursorCount) {
16191619

16201620
const multiCursorLimit = this.getOption(EditorOption.multiCursorLimit);
1621-
const message = nls.localize('cursors.maximum', "The number of cursors has been limited to {0}. Consider using [find and replace](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) for larger changes.", multiCursorLimit);
1621+
const message = nls.localize('cursors.maximum', "The number of cursors has been limited to {0}. Consider using [find and replace](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) for larger changes or increase the editor multi cursor limit setting.", multiCursorLimit);
16221622
this._notificationService.prompt(Severity.Warning, message, [
16231623
{
16241624
label: 'Find and Replace',
@@ -1627,7 +1627,7 @@ export class CodeEditorWidget extends Disposable implements editorBrowser.ICodeE
16271627
}
16281628
},
16291629
{
1630-
label: nls.localize('goToSetting', 'Open Settings'),
1630+
label: nls.localize('goToSetting', 'Increase Multi Cursor Limit'),
16311631
run: () => {
16321632
this._commandService.executeCommand('workbench.action.openSettings2', {
16331633
query: 'editor.multiCursorLimit'

0 commit comments

Comments
 (0)