vim: Add == and fix = in the status bar (#21490)

cc @maxbrunsfeld

Release Notes:

- vim: Add ==
This commit is contained in:
Conrad Irwin 2024-12-03 13:18:19 -08:00 committed by GitHub
parent 1fccda7b8d
commit db34f29300
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View file

@ -487,6 +487,7 @@ impl Operator {
Operator::Literal {
prefix: Some(prefix),
} => format!("^V{prefix}"),
Operator::AutoIndent => "=".to_string(),
_ => self.id().to_string(),
}
}