Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/commands/insert.rs')
| -rw-r--r-- | helix-term/tests/test/commands/insert.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/helix-term/tests/test/commands/insert.rs b/helix-term/tests/test/commands/insert.rs index edec192c..9499868e 100644 --- a/helix-term/tests/test/commands/insert.rs +++ b/helix-term/tests/test/commands/insert.rs @@ -173,6 +173,18 @@ async fn insert_newline_trim_trailing_whitespace() -> anyhow::Result<()> { } #[tokio::test(flavor = "multi_thread")] +async fn insert_newline_trim_whitespace_to_previous_selection() -> anyhow::Result<()> { + test(( + indoc! {"\"#[a|]# #(a|)# #(a|)#\""}, + "c<ret>", + indoc! {"\"\n#[\n|]##(\n|)##(\"|)#"}, + )) + .await?; + + Ok(()) +} + +#[tokio::test(flavor = "multi_thread")] async fn insert_newline_continue_line_comment() -> anyhow::Result<()> { // `insert_newline` continues a single line comment test(( |