mirror of
https://github.com/nushell/nushell
synced 2024-12-26 04:53:09 +00:00
Merge pull request #85 from jonathandturner/more_table
More table tweaks
This commit is contained in:
commit
3b57c53c80
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ impl RenderView for TableView {
|
|||
let mut table = Table::new();
|
||||
|
||||
let fb = FormatBuilder::new()
|
||||
.separator(LinePosition::Top, LineSeparator::new(' ', ' ', ' ', ' '))
|
||||
.separator(LinePosition::Top, LineSeparator::new('-', '+', ' ', ' '))
|
||||
.separator(LinePosition::Bottom, LineSeparator::new('-', '+', ' ', ' '))
|
||||
.separator(LinePosition::Title, LineSeparator::new('-', '+', '|', '|'))
|
||||
.column_separator('|')
|
||||
.padding(1, 1);
|
||||
|
|
Loading…
Reference in a new issue