ref: abbb42a4e481d05ec3b445728c61a4dabb3b337f
parent: e0d26367b182e26ea981ae45d6135bc2b5d526bb
author: cancel <cancel@cancel.fm>
date: Thu Dec 13 19:16:59 EST 2018
Cleanup
--- a/tui_main.c
+++ b/tui_main.c
@@ -1485,14 +1485,13 @@
{"/", "Key Trigger Mode"},
{"' (quote)", "Rectangle Selection Mode"},
{"Shift+Arrow Keys", "Adjust Rectangle Selection"},
- {NULL, "(Only in some terminals)"},
- {"Escape", "Return to Normal Mode"},
- {NULL, "or Deselect"},
+ {"Escape", "Return to Normal Mode or Deselect"},
{"( and )", "Resize Grid (Horizontal)"},
{"_ and +", "Resize Grid (Vertical)"},
{"[ and ]", "Adjust Grid Rulers (Horizontal)"},
{"{ and }", "Adjust Grid Rulers (Vertical)"},
{"< and >", "Adjust BPM"},
+ {"?", "Controls (This Message)"},
};
int w_input = 0;
int w_desc = 0;
@@ -1981,6 +1980,10 @@
push_main_menu();
}
} break;
+
+ case '?':
+ push_controls_msg();
+ break;
case CTRL_PLUS('s'): {
try_save_with_msg(&ged_state);