longestSubcommandTermLength(cmd, helper) {
        return helper.visibleCommands(cmd).reduce((max, command) => Math.max(
            max,
            helper.subcommandTerm(command).length - getControlCharacterSpaces(helper.subcommandTerm(command))
        ), 0);