From 15a31418cad88503754de65e4257420604aae9d3 Mon Sep 17 00:00:00 2001 From: jgmdev Date: Thu, 24 Feb 2022 14:22:52 -0400 Subject: [PATCH] StatusView: restored indent confirmed --- data/core/statusview.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/core/statusview.lua b/data/core/statusview.lua index 0f793be6..c40c8924 100644 --- a/data/core/statusview.lua +++ b/data/core/statusview.lua @@ -211,7 +211,8 @@ function StatusView:register_docview_items() local indent_type, indent_size, indent_confirmed = dv.doc:get_indent_info() local indent_label = (indent_type == "hard") and "tabs: " or "spaces: " return { - style.text, indent_label, indent_size + style.text, indent_label, indent_size, + indent_confirmed and "" or "*" } end, function(button, x, y)