Make mode indicator follow vim enabled state

This commit is contained in:
Mikayla Maki 2023-07-27 16:14:56 -07:00
parent fc9687d163
commit 03bc430bdd
No known key found for this signature in database

View File

@ -44,7 +44,11 @@ impl ModeIndicator {
// Vim doesn't exist in some tests
let mode = cx
.has_global::<Vim>()
.then(|| cx.global::<Vim>().state.mode);
.then(|| {
let vim = cx.global::<Vim>();
vim.enabled.then(|| vim.state.mode)
})
.flatten();
Self {
mode,