diff --git a/src/main.cc b/src/main.cc index 3beb97e2..5461dcd2 100644 --- a/src/main.cc +++ b/src/main.cc @@ -372,7 +372,7 @@ void do_rotate_selections(Context& context) if (count == 0) count = 1; SelectionList sels = context.editor().selections(); - count %= sels .size(); + count %= sels.size(); std::rotate(sels.begin(), sels.begin() + count, sels.end()); context.editor().select(std::move(sels)); };