repl: Add ctrl-alt-enter binding to run in place (#15743)

Release Notes:

- Added `ctrl-alt-enter` keybinding for `repl::RunInPlace`
(`ctrl-option-enter` on MacOS). Keeps your screen position and cursor in
place when running any block.
This commit is contained in:
Kyle Kelley 2024-08-03 10:27:05 -07:00 committed by GitHub
parent b7eae7fbd9
commit f8234aec6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 29 additions and 11 deletions

View file

@ -134,7 +134,7 @@ impl QuickActionBar {
{
let editor = editor.clone();
move |cx| {
repl::run(editor.clone(), cx).log_err();
repl::run(editor.clone(), true, cx).log_err();
}
},
)