Right now, the command :help prints the regular help text for normal mode controls i.e. the same as the ? key. Instead, it should print help specific to command mode.
Implementation
Using the text already in the readme, make a new help text method similar to the existing one, but for command mode.
On command :help print this help text instead of the existing help text.
Instead of a boolean for render_help in ui::State, make an enum, with three variants...
Goal
Right now, the command
:help
prints the regular help text for normal mode controls i.e. the same as the?
key. Instead, it should print help specific to command mode.Implementation
:help
print this help text instead of the existing help text.ui::State
, make an enum, with three variants...