From 44f9f2bbd626c3dea4a51b2fb04ba497e678d0ee Mon Sep 17 00:00:00 2001 From: Braden Obrzut Date: Mon, 23 Mar 2015 21:51:33 -0400 Subject: [PATCH] - Fixed: Default movedown bind was set to "insert" and not "ins". --- src/c_bind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c_bind.cpp b/src/c_bind.cpp index 66ed14ca5..1a62469bc 100644 --- a/src/c_bind.cpp +++ b/src/c_bind.cpp @@ -130,7 +130,7 @@ static const FBinding DefBindings[] = static const FBinding DefRavenBindings[] = { { "pgup", "+moveup" }, - { "insert", "+movedown" }, + { "ins", "+movedown" }, { "home", "land" }, { "pgdn", "+lookup" }, { "del", "+lookdown" },