There was an error while loading. Please reload this page.
1 parent 88b213f commit dcb0929Copy full SHA for dcb0929
1 file changed
app/Commands/VendorKill.php
@@ -731,8 +731,8 @@ protected function writeListLines(): void
731
? "<fg=gray>{$numberText}</>"
732
: ($isActive ? "<fg=cyan>{$numberText}</>" : "<fg=gray>{$numberText}</>");
733
734
- // prefixLen = 1 (leading space) + 2 (indicator) + 1 (space) + numWidth + 1 (dot) + 1 (space)
735
- $prefixLen = 1 + 2 + 1 + $numWidth + 1 + 1;
+ // prefixLen = 1 (leading space) + 2 (indicator) + numWidth + 1 (dot) + 1 (space)
+ $prefixLen = 1 + 2 + $numWidth + 1 + 1;
736
$badgePad = 1; // 1 space before right edge
737
738
// In --all mode prepend a type tag to the badge so the user can distinguish dirs
0 commit comments