diff --git a/src/vs/workbench/electron-browser/removedKeybindingsContribution.ts b/src/vs/workbench/electron-browser/removedKeybindingsContribution.ts index e50396c7615b48bb2a0be06db62fc95f2c23e97e..297c96619235531841f5f627ab4d56451eb7707e 100644 --- a/src/vs/workbench/electron-browser/removedKeybindingsContribution.ts +++ b/src/vs/workbench/electron-browser/removedKeybindingsContribution.ts @@ -53,7 +53,7 @@ export class HistoryNavigationKeybindingsChangedContribution implements IWorkben if (!this.storageService.getBoolean(key, StorageScope.GLOBAL, false)) { const keybindingsToRemove = this.keybindingService.getKeybindings().filter(keybinding => !keybinding.isDefault && this.previousCommands.indexOf(keybinding.command) !== -1); if (keybindingsToRemove.length) { - const message = localize('showDeprecatedWarningMessage', "History navigation commands have changed. Please update your keybindings to use following new commands: 'input.action.historyPrevious' and 'input.action.historyNext'"); + const message = localize('showDeprecatedWarningMessage', "History navigation commands have changed. Please update your keybindings to use following new commands: 'history.showPrevious' and 'history.showNext'"); this.notificationService.prompt(Severity.Warning, message, [ { label: localize('Open Keybindings', "Open Keybindings File"),