From 04b1c92767a2c807334c0420801a457511fe6a46 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 24 Nov 2021 12:08:59 +0100 Subject: [PATCH] FakeVim: Fix GUI text for "Smart indentation" setting Change-Id: Ib347a36dd10a6474aae4da7285f4374593d372f6 Fixes: QTCREATORBUG-26607 Reviewed-by: Christian Stenger --- src/plugins/fakevim/fakevimactions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/fakevim/fakevimactions.cpp b/src/plugins/fakevim/fakevimactions.cpp index 520bf564f5b..0d2f1e2f18f 100644 --- a/src/plugins/fakevim/fakevimactions.cpp +++ b/src/plugins/fakevim/fakevimactions.cpp @@ -104,7 +104,7 @@ FakeVimSettings::FakeVimSettings() setup(&shiftWidth, 8, "ShiftWidth", "sw", tr("Shift width:")); setup(&expandTab, false, "ExpandTab", "et", tr("Expand tabulators")); setup(&autoIndent, false, "AutoIndent", "ai", tr("Automatic indentation")); - setup(&smartIndent, false, "SmartIndent", "si", tr("Smart tabulators")); + setup(&smartIndent, false, "SmartIndent", "si", tr("Smart indentation")); setup(&incSearch, true, "IncSearch", "is", tr("Incremental search")); setup(&useCoreSearch, false, "UseCoreSearch", "ucs", tr("Use search dialog")); setup(&smartCase, false, "SmartCase", "scs", tr("Use smartcase"));