Rename all readline commands to lowercase and remove R_ prefix

This commit is contained in:
ridiculousfish
2019-03-23 17:32:39 -07:00
parent 9187458d51
commit e7d7eff0ee
4 changed files with 268 additions and 268 deletions

View File

@@ -2999,8 +2999,8 @@ static void test_input() {
auto evt = input_readch();
if (!evt.is_readline()) {
err(L"Event is not a readline");
} else if (evt.get_readline() != readline_cmd_t::R_DOWN_LINE) {
err(L"Expected to read char R_DOWN_LINE");
} else if (evt.get_readline() != readline_cmd_t::down_line) {
err(L"Expected to read char down_line");
}
}