summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extension/package.json4
-rw-r--r--extension/react-app/src/components/Layout.tsx2
2 files changed, 3 insertions, 3 deletions
diff --git a/extension/package.json b/extension/package.json
index 2bff4de2..2479602f 100644
--- a/extension/package.json
+++ b/extension/package.json
@@ -126,8 +126,8 @@
},
{
"command": "continue.debugTerminal",
- "mac": "cmd+d",
- "key": "ctrl+d"
+ "mac": "cmd+shift+r",
+ "key": "ctrl+shift+r"
}
],
"menus": {
diff --git a/extension/react-app/src/components/Layout.tsx b/extension/react-app/src/components/Layout.tsx
index eee92ff7..cec3f8e1 100644
--- a/extension/react-app/src/components/Layout.tsx
+++ b/extension/react-app/src/components/Layout.tsx
@@ -150,7 +150,7 @@ const Layout = () => {
onMouseEnter={() => {
dispatch(
setBottomMessage(
- "🎁 New Feature: Use ⌘D automatically debug errors in the terminal"
+ "🎁 New Feature: Use ⌘⇧R automatically debug errors in the terminal"
)
);
}}