From: Daniel Carl <danielcarl@gmx.de>
Date: Thu, 26 Sep 2013 23:57:22 +0000 (+0200)
Subject: Fixed wrong mapped 'T' and 'O' commands.
X-Git-Url: https://git.owens.tech/wrapped.html/wrapped.html/git?a=commitdiff_plain;h=d558cfacb0f6ec865418aa6ba6bfc9309507ced3;p=vimb.git

Fixed wrong mapped 'T' and 'O' commands.
---

diff --git a/src/normal.c b/src/normal.c
index c087a02..834280c 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -526,7 +526,7 @@ static VbResult normal_input_open(const NormalCmdInfo *info)
     if (strchr("ot", info->cmd)) {
         vb_set_input_text(info->cmd == 't' ? ":tabopen " : ":open ");
     } else {
-        vb_echo(VB_MSG_NORMAL, false, ":%s %s", info->cmd == 'T' ? "open" : "tabopen", GET_URI());
+        vb_echo(VB_MSG_NORMAL, false, ":%s %s", info->cmd == 'T' ? "tabopen" : "open", GET_URI());
     }
     /* switch mode after setting the input text to not trigger the
      * commands modes input change handler */