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", "context": "Editor && mode == auto_height",
"bindings": { "bindings": {
"shift-enter": "editor::Newline", "ctrl-enter": "editor::Newline",
"cmd-shift-enter": "editor::NewlineBelow" "ctrl-shift-enter": "editor::NewlineBelow"
} }
}, },
{ {

View file

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