From 74da22bb03e6945bd785582dfd58bbeac166dd0d Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 10 Jan 2024 15:49:48 +0100 Subject: [PATCH] ENOSPC though no workspace (fix #201923) (#202161) --- src/vs/workbench/contrib/files/browser/workspaceWatcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/files/browser/workspaceWatcher.ts b/src/vs/workbench/contrib/files/browser/workspaceWatcher.ts index f9100a0eb4d..0ac5922236c 100644 --- a/src/vs/workbench/contrib/files/browser/workspaceWatcher.ts +++ b/src/vs/workbench/contrib/files/browser/workspaceWatcher.ts @@ -73,7 +73,7 @@ export class WorkspaceWatcher extends Disposable { if (msg.indexOf('ENOSPC') >= 0) { this.notificationService.prompt( Severity.Warning, - localize('enospcError', "Unable to watch for file changes in this large workspace folder. Please follow the instructions link to resolve this issue."), + localize('enospcError', "Unable to watch for file changes in this workspace. Please follow the instructions link to resolve this issue."), [{ label: localize('learnMore', "Instructions"), run: () => this.openerService.open(URI.parse('https://go.microsoft.com/fwlink/?linkid=867693'))