diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index 2ceb2ca30fe..6909c4d35a7 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -1651,11 +1651,13 @@ void FakeVimPlugin::editorOpened(IEditor *editor) keepOnlyWindow(); else if (key == "P" || key == "") triggerAction(Core::Constants::GOTO_PREV_SPLIT); - else if (key == "S" || key == "") + else if (key == "S" || key == "") { triggerAction(Core::Constants::SPLIT); - else if (key == "V" || key == "") + updateAllHightLights(); + } else if (key == "V" || key == "") { triggerAction(Core::Constants::SPLIT_SIDE_BY_SIDE); - else if (key == "W" || key == "") + updateAllHightLights(); + } else if (key == "W" || key == "") triggerAction(Core::Constants::GOTO_NEXT_SPLIT); else if (key.contains("RIGHT") || key == "L" || key == "" || key == "") moveSomewhere(handler, &moveRightWeight, key == "" ? -1 : count);