diff --git a/src/vs/code/electron-main/menus.ts b/src/vs/code/electron-main/menus.ts index ebf7e362782..16b2eb12027 100644 --- a/src/vs/code/electron-main/menus.ts +++ b/src/vs/code/electron-main/menus.ts @@ -68,7 +68,7 @@ class KeybindingsResolver { ) { this.commandIds = new Set(); this.keybindings = this.storageService.getItem<{ [id: string]: string; }>(KeybindingsResolver.lastKnownKeybindingsMapStorageKey) || Object.create(null); - this.keybindingsWatcher = new ConfigWatcher(environmentService.appKeybindingsPath, { changeBufferDelay: 1000 /* update after 1s */ }); + this.keybindingsWatcher = new ConfigWatcher(environmentService.appKeybindingsPath, { changeBufferDelay: 100 }); this.registerListeners(); }