summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-21 09:50:45 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-21 09:50:45 -0700
commit64a318041e68be1cd5cca7a88ef1f87fa15c9c28 (patch)
tree0a0fa75f11781db9c4a48b80dad10592363dacb3 /extension
parent4ae786e39763125709fb30e072789c4df5cb942d (diff)
downloadsncontinue-64a318041e68be1cd5cca7a88ef1f87fa15c9c28.tar.gz
sncontinue-64a318041e68be1cd5cca7a88ef1f87fa15c9c28.tar.bz2
sncontinue-64a318041e68be1cd5cca7a88ef1f87fa15c9c28.zip
refactor: :children_crossing: change debug shortcut to cmd+shift+r
Diffstat (limited to 'extension')
-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"
)
);
}}