Fix shift-enter in search

If you want to type a newline in an auto_height editor, ctrl and
ctrl-shift are your friends.
This commit is contained in:
Conrad Irwin 2023-07-21 09:08:40 -06:00
parent 35400d5797
commit 807279208d
2 changed files with 4 additions and 2 deletions

View File

@ -195,8 +195,8 @@
{
"context": "Editor && mode == auto_height",
"bindings": {
"shift-enter": "editor::Newline",
"cmd-shift-enter": "editor::NewlineBelow"
"ctrl-enter": "editor::Newline",
"ctrl-shift-enter": "editor::NewlineBelow"
}
},
{

View File

@ -296,5 +296,7 @@ mod test {
cx.assert_editor_state("«oneˇ» one one one");
cx.simulate_keystrokes(["enter"]);
cx.assert_editor_state("one «oneˇ» one one");
cx.simulate_keystrokes(["shift-enter"]);
cx.assert_editor_state("«oneˇ» one one one");
}
}