repl: Change keybinding to ctrl-shift-enter for repl::Run (#15026)

Kyle Kelley created

... on all platforms.

`ctrl-shift-enter` for the repl, `cmd-enter` for the assistant. People
can override this behavior as they desire in their own keymaps.

Release Notes:

- N/A

Change summary

assets/keymaps/default-linux.json | 2 +-
assets/keymaps/default-macos.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

assets/keymaps/default-linux.json 🔗

@@ -485,7 +485,7 @@
   {
     "context": "Editor && jupyter && !ContextEditor",
     "bindings": {
-      "ctrl-enter": "repl::Run"
+      "ctrl-shift-enter": "repl::Run"
     }
   },
   {

assets/keymaps/default-macos.json 🔗

@@ -183,7 +183,7 @@
   {
     "context": "Editor && jupyter && !ContextEditor",
     "bindings": {
-      "cmd-enter": "repl::Run"
+      "ctrl-shift-enter": "repl::Run"
     }
   },
   {