We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 240f4ce commit a558922Copy full SHA for a558922
internal/completion/group.go
@@ -327,7 +327,6 @@ func (g *group) longestValueDescribed(vals []Candidate) int {
327
328
if val.descLen > longestDesc {
329
longestDesc = val.descLen
330
-
331
}
332
333
@@ -344,7 +343,7 @@ func (g *group) longestValueDescribed(vals []Candidate) int {
344
343
345
346
// Always add one: there is at least one space between each column.
347
- return longestVal + longestDesc + 1
+ return longestVal + longestDesc + 2
348
349
350
func (g *group) trimDisplay(comp Candidate, pad, col int) (candidate, padded string) {
0 commit comments