From 00c8d1a4faa2de730328f2d57a78b3e5b64ba9d7 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 8 Oct 2013 19:28:57 +0100 Subject: [PATCH] Fix tabs that appeared in the codebase --- src/normal.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/normal.cc b/src/normal.cc index d240dad1..c8592b8b 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -678,7 +678,7 @@ void rotate_selections_content(Context& context) int count = context.numeric_param(); if (count == 0) count = 1; - Editor& editor = context.editor(); + Editor& editor = context.editor(); auto strings = editor.selections_content(); count = count % strings.size(); std::rotate(strings.begin(), strings.end()-count, strings.end()); @@ -776,8 +776,8 @@ void jump(Context& context) void save_selections(Context& context) { - context.push_jump(); - context.print_status({ "saved " + to_string(context.editor().selections().size()) + + context.push_jump(); + context.print_status({ "saved " + to_string(context.editor().selections().size()) + " selections", get_color("Information") }); }