From 362e3467289b7e71a27c36e20aa5c0d19ff6cac3 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 19 Apr 2013 13:49:47 +0200 Subject: [PATCH] rename go function to goto_commands --- src/normal.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/normal.cc b/src/normal.cc index ff30fa2b..3b8db13a 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -32,7 +32,7 @@ void repeat_insert(Context& context) } template -void go(Context& context) +void goto_commands(Context& context) { int count = context.numeric_param(); if (count != 0) @@ -707,8 +707,8 @@ KeyMap keymap = { { Key::Modifiers::None, 'O' }, insert }, { { Key::Modifiers::None, 'r' }, replace_with_char }, - { { Key::Modifiers::None, 'g' }, go }, - { { Key::Modifiers::None, 'G' }, go }, + { { Key::Modifiers::None, 'g' }, goto_commands }, + { { Key::Modifiers::None, 'G' }, goto_commands }, { { Key::Modifiers::None, 'v' }, view_commands },