Skip to content

Commit

Permalink
table: change EmptySeparator to be a blank space; fixes #337 (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
jedib0t authored Oct 21, 2024
1 parent 730bce7 commit 840c578
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions table/style.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ var (
BottomLeft: "+",
BottomRight: "+",
BottomSeparator: "+",
EmptySeparator: text.RepeatAndTrim(" ", text.RuneWidthWithoutEscSequences("+")),
EmptySeparator: " ",
Left: "|",
LeftSeparator: "+",
MiddleHorizontal: "-",
Expand Down Expand Up @@ -410,7 +410,7 @@ var (
BottomLeft: "┗",
BottomRight: "┛",
BottomSeparator: "┻",
EmptySeparator: text.RepeatAndTrim(" ", text.RuneWidthWithoutEscSequences("╋")),
EmptySeparator: " ",
Left: "┃",
LeftSeparator: "┣",
MiddleHorizontal: "━",
Expand Down Expand Up @@ -441,7 +441,7 @@ var (
BottomLeft: "╚",
BottomRight: "╝",
BottomSeparator: "╩",
EmptySeparator: text.RepeatAndTrim(" ", text.RuneWidthWithoutEscSequences("╬")),
EmptySeparator: " ",
Left: "║",
LeftSeparator: "╠",
MiddleHorizontal: "═",
Expand Down Expand Up @@ -472,7 +472,7 @@ var (
BottomLeft: "└",
BottomRight: "┘",
BottomSeparator: "┴",
EmptySeparator: text.RepeatAndTrim(" ", text.RuneWidthWithoutEscSequences("┼")),
EmptySeparator: " ",
Left: "│",
LeftSeparator: "├",
MiddleHorizontal: "─",
Expand Down Expand Up @@ -503,7 +503,7 @@ var (
BottomLeft: "╰",
BottomRight: "╯",
BottomSeparator: "┴",
EmptySeparator: text.RepeatAndTrim(" ", text.RuneWidthWithoutEscSequences("┼")),
EmptySeparator: " ",
Left: "│",
LeftSeparator: "├",
MiddleHorizontal: "─",
Expand Down Expand Up @@ -534,7 +534,7 @@ var (
BottomLeft: "\\",
BottomRight: "/",
BottomSeparator: "v",
EmptySeparator: text.RepeatAndTrim(" ", text.RuneWidthWithoutEscSequences("+")),
EmptySeparator: " ",
Left: "[",
LeftSeparator: "{",
MiddleHorizontal: "--",
Expand Down

0 comments on commit 840c578

Please sign in to comment.