clearSpec top-level property
Completion spec for clear CLI
Implementation
final FigSpec clearSpec = FigSpec(
name: 'clear',
description: 'Clear the terminal screen',
options: [
Option(
name: '-T',
description: 'Indicates the type of terminal',
args: [
Arg(
name: 'type'
)
]
),
Option(
name: '-V',
description: 'Reports version of ncurses used in this program, and exits'
),
Option(
name: '-x',
description: 'Do not attempt to clear terminal\'s scrollback buffer using the extended E3 capability'
)
]
);