Convert status info into proper runtime_errors
This commit is contained in:
parent
76f072a786
commit
7224fe3840
|
@ -241,7 +241,7 @@ void goto_commands(Context& context, NormalParams params)
|
||||||
if (not context.has_client() or
|
if (not context.has_client() or
|
||||||
not (target = context.client().last_buffer()))
|
not (target = context.client().last_buffer()))
|
||||||
{
|
{
|
||||||
context.print_status({"no last buffer", get_face("Error")});
|
throw runtime_error("no last buffer");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
context.push_jump();
|
context.push_jump();
|
||||||
|
@ -1750,7 +1750,7 @@ void undo(Context& context, NormalParams params)
|
||||||
context.selections_write_only() = std::move(ranges);
|
context.selections_write_only() = std::move(ranges);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
context.print_status({ "nothing left to undo", get_face("Information") });
|
throw runtime_error("nothing left to undo");
|
||||||
}
|
}
|
||||||
|
|
||||||
void redo(Context& context, NormalParams params)
|
void redo(Context& context, NormalParams params)
|
||||||
|
@ -1764,7 +1764,7 @@ void redo(Context& context, NormalParams params)
|
||||||
context.selections_write_only() = std::move(ranges);
|
context.selections_write_only() = std::move(ranges);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
context.print_status({ "nothing left to redo", get_face("Information") });
|
throw runtime_error("nothing left to redo");
|
||||||
}
|
}
|
||||||
|
|
||||||
template<Direction direction>
|
template<Direction direction>
|
||||||
|
@ -1788,9 +1788,8 @@ void move_in_history(Context& context, NormalParams params)
|
||||||
get_face("Information") });
|
get_face("Information") });
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
context.print_status({ format("no such change: #{} ({})",
|
throw runtime_error(format("no such change: #{} ({})",
|
||||||
history_id, max_history_id),
|
history_id, max_history_id));
|
||||||
get_face("Information") });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void exec_user_mappings(Context& context, NormalParams params)
|
void exec_user_mappings(Context& context, NormalParams params)
|
||||||
|
@ -2016,7 +2015,7 @@ const HashMap<Key, NormalCmd> keymap{
|
||||||
{ {'!'}, {"insert command output", insert_output<InsertMode::Insert>} },
|
{ {'!'}, {"insert command output", insert_output<InsertMode::Insert>} },
|
||||||
{ {alt('!')}, {"append command output", insert_output<InsertMode::Append>} },
|
{ {alt('!')}, {"append command output", insert_output<InsertMode::Append>} },
|
||||||
|
|
||||||
{ {' '}, {"remove all selection except main", keep_selection} },
|
{ {' '}, {"remove all selections except main", keep_selection} },
|
||||||
{ {alt(' ')}, {"remove main selection", remove_selection} },
|
{ {alt(' ')}, {"remove main selection", remove_selection} },
|
||||||
{ {';'}, {"reduce selections to their cursor", clear_selections} },
|
{ {';'}, {"reduce selections to their cursor", clear_selections} },
|
||||||
{ {alt(';')}, {"swap selections cursor and anchor", flip_selections} },
|
{ {alt(';')}, {"swap selections cursor and anchor", flip_selections} },
|
||||||
|
|
Loading…
Reference in New Issue
Block a user