view method

String view(
  1. KeyMap keyMap
)

Renders the help view using the given key map.

Implementation

String view(KeyMap keyMap) {
  if (showAll) {
    return fullHelpView(keyMap.fullHelp());
  }
  return shortHelpView(keyMap.shortHelp());
}