Keep editor from switching to normal mode when loading a Document (#11176)
This commit is contained in:
parent
702a96d417
commit
6345b78409
1 changed files with 3 additions and 1 deletions
|
@ -1544,7 +1544,9 @@ impl Editor {
|
|||
return;
|
||||
}
|
||||
|
||||
self.enter_normal_mode();
|
||||
if !matches!(action, Action::Load) {
|
||||
self.enter_normal_mode();
|
||||
}
|
||||
|
||||
match action {
|
||||
Action::Replace => {
|
||||
|
|
Loading…
Add table
Reference in a new issue