Merge pull request #2035 from zed-industries/always-auto-indent-block-on-paste

Always auto-indent in block-wise mode when pasting
This commit is contained in:
Max Brunsfeld 2023-01-17 10:24:41 -08:00 committed by GitHub
commit 1a6a807db5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 108 additions and 21 deletions

View file

@ -2020,7 +2020,9 @@ impl Editor {
old_selections
.iter()
.map(|s| (s.start..s.end, text.clone())),
Some(AutoindentMode::EachLine),
Some(AutoindentMode::Block {
original_indent_columns: Vec::new(),
}),
cx,
);
anchors