Fix Vim commenting

This commit is contained in:
2024-10-30 10:42:09 -04:00
parent d56c047782
commit adf0cb89b9
8 changed files with 42 additions and 26 deletions

View File

@@ -11,4 +11,6 @@ if (( $(echo "$price < .09" | bc -l) )); then
printf "%0.4f\n" "$price" | cut -c 4-
elif (( $(echo "$price < .1" | bc -l) )); then
printf "%0.3f\n" "$price" | cut -c 4-
elif (( $(echo "$price < 1" | bc -l) )); then
printf "%0.3f\n" "$price" | cut -c 3-
fi