mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
fix: surprising behaviour when changing line above a comment (#12575)
Co-authored-by: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com>
This commit is contained in:
parent
343397391f
commit
076d8bd173
2 changed files with 41 additions and 12 deletions
|
@ -1,5 +1,24 @@
|
|||
use super::*;
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn change_line_above_comment() -> anyhow::Result<()> {
|
||||
// <https://github.com/helix-editor/helix/issues/12570>
|
||||
test((
|
||||
indoc! {"\
|
||||
#[fn main() {}
|
||||
|]#// a comment
|
||||
"},
|
||||
":lang rust<ret>c",
|
||||
indoc! {"\
|
||||
#[
|
||||
|]#// a comment
|
||||
"},
|
||||
))
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn insert_newline_many_selections() -> anyhow::Result<()> {
|
||||
test((
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue