Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/commands.rs')
-rw-r--r--helix-term/tests/test/commands.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/helix-term/tests/test/commands.rs b/helix-term/tests/test/commands.rs
index 32badaa4..3e2d4b52 100644
--- a/helix-term/tests/test/commands.rs
+++ b/helix-term/tests/test/commands.rs
@@ -665,6 +665,14 @@ async fn test_join_selections_comment() -> anyhow::Result<()> {
))
.await?;
+ test((
+ "#[|\t// Join comments
+\t// with indent]#",
+ ":lang go<ret>J",
+ "#[|\t// Join comments with indent]#",
+ ))
+ .await?;
+
Ok(())
}