diff options
Diffstat (limited to 'extension/src/diffs.ts')
-rw-r--r-- | extension/src/diffs.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extension/src/diffs.ts b/extension/src/diffs.ts index d04f9bdb..9d0c9fe7 100644 --- a/extension/src/diffs.ts +++ b/extension/src/diffs.ts @@ -3,6 +3,7 @@ import * as path from "path"; import * as fs from "fs"; import * as vscode from "vscode"; import { extensionContext, ideProtocolClient } from "./activation/activate"; +import { getMetaKeyLabel } from "./util/util"; interface DiffInfo { originalFilepath: string; @@ -86,7 +87,7 @@ class DiffManager { ) { vscode.window .showInformationMessage( - "Accept (⌘⇧↩) or reject (⌘⇧⌫) at the top of the file.", + `Accept (${getMetaKeyLabel()}⇧↩) or reject (${getMetaKeyLabel()}⇧⌫) at the top of the file.`, "Got it", "Don't show again" ) |