CmdColumns: Added <uda> to the sample column formats

This commit is contained in:
Paul Beckingham 2015-07-18 14:38:38 -04:00
parent 3619cf219d
commit d66d53a013
2 changed files with 67 additions and 16 deletions

View file

@ -94,6 +94,14 @@ int CmdColumns::execute (std::string& output)
}
}
int row = formats.addRow ();
formats.set (row, 0, "<uda>");
formats.set (row, 1, "default*");
row = formats.addRow ();
formats.set (row, 0, "");
formats.set (row, 1, "indicator");
output = optionalBlankLine ()
+ formats.render ()
+ "\n"