diff options
Diffstat (limited to '.local/bin/cmdfmt')
| -rwxr-xr-x | .local/bin/cmdfmt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.local/bin/cmdfmt b/.local/bin/cmdfmt index 37218d7..634e9c6 100755 --- a/.local/bin/cmdfmt +++ b/.local/bin/cmdfmt | |||
| @@ -3,6 +3,11 @@ | |||
| 3 | use strict; | 3 | use strict; |
| 4 | 4 | ||
| 5 | my $textwidth = $ARGV[0] // 80; | 5 | my $textwidth = $ARGV[0] // 80; |
| 6 | |||
| 7 | if ($textwidth == 0) { | ||
| 8 | $textwidth = 80; | ||
| 9 | } | ||
| 10 | |||
| 6 | # TODO: get tabstop from vim as well <17-11-21, yigit> # | 11 | # TODO: get tabstop from vim as well <17-11-21, yigit> # |
| 7 | my $tabstop = ' ' x 4; | 12 | my $tabstop = ' ' x 4; |
| 8 | 13 | ||
