From 75ce70a862d63b91aa8793cdcd9eaae8c9ea5047 Mon Sep 17 00:00:00 2001 From: Carl Simonson Date: Wed, 31 Jul 2013 20:57:38 -0500 Subject: [PATCH] FakeVim: Add another key binding for vsplit Vim allows for spliting veritcally by typing . Add this keybinding. Change-Id: I7db5a8cd06eea05b011655ec326b3795f0896ed9 Reviewed-by: Lukas Holecek Reviewed-by: hjk --- src/plugins/fakevim/fakevimplugin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index ab682fe6ee4..6598b1b575d 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -1325,6 +1325,8 @@ void FakeVimPluginPrivate::windowCommand(const QString &map, int count) triggerAction(Core::Constants::GOTOPREV); else if (key == _("S") || key == _("")) triggerAction(Core::Constants::SPLIT); + else if (key == _("V") || key == _("")) + triggerAction(Core::Constants::SPLIT_SIDE_BY_SIDE); else if (key == _("W") || key == _("")) triggerAction(Core::Constants::GOTO_NEXT_SPLIT); else if (key.contains(_("RIGHT")) || key == _("L") || key == _(""))