From d558cfacb0f6ec865418aa6ba6bfc9309507ced3 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Fri, 27 Sep 2013 01:57:22 +0200 Subject: [PATCH] Fixed wrong mapped 'T' and 'O' commands. --- src/normal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.20.1