diff --git a/src/main.cpp b/src/main.cpp index 319a1c1..1449e89 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -671,6 +671,7 @@ std::unique_ptr BuildRegistry() { std::unique_ptr registry = std::make_unique(); registry->Register('q', std::move(std::make_unique())); + registry->Register(27, std::move(std::make_unique())); registry->Register('h', std::move(std::make_unique())); registry->Register(KEY_LEFT, std::move(std::make_unique())); @@ -686,6 +687,7 @@ std::unique_ptr BuildRegistry() { 6 /* CTRL-F */, std::move(std::make_unique())); // ^F registry->Register( 2 /* CTRL-B */, std::move(std::make_unique())); // ^B + registry->Register(KEY_ENTER, std::move(std::make_unique())); registry->Register('J', std::move(std::make_unique())); registry->Register(KEY_NPAGE, std::move(std::make_unique())); registry->Register('K', std::move(std::make_unique()));