mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Save an undo checkpoint before paste in insert mode (#8121)
This commit is contained in:
parent
239262e094
commit
59b020ec91
1 changed files with 4 additions and 0 deletions
|
@ -4339,6 +4339,10 @@ fn paste_impl(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if mode == Mode::Insert {
|
||||||
|
doc.append_changes_to_history(view);
|
||||||
|
}
|
||||||
|
|
||||||
let repeat = std::iter::repeat(
|
let repeat = std::iter::repeat(
|
||||||
// `values` is asserted to have at least one entry above.
|
// `values` is asserted to have at least one entry above.
|
||||||
values
|
values
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue