Renamed autoformat -> format for concision (it's obviously auto, it's a

tool).
This commit is contained in:
Bruce Hill 2018-12-18 19:25:10 -08:00
parent 94740a9b41
commit 8e52f1901b

View File

@ -1,7 +1,7 @@
#!/usr/bin/env nomsu -V5.12.12.8 #!/usr/bin/env nomsu -V5.12.12.8
# #
Auto-format Nomsu code. Usage: Auto-format Nomsu code. Usage:
nomsu -t autoformat [-i] file1 file2... nomsu -t format [-i] file1 file2...
If the "-i" flag is used, the file will be edited in-place. If the "-i" flag is used, the file will be edited in-place.
If no files are passed in, this will read from stdin. If no files are passed in, this will read from stdin.
@ -12,7 +12,7 @@ use "lib/os.nom"
$filenames = $(COMMAND LINE ARGS).extras $filenames = $(COMMAND LINE ARGS).extras
if ((#$filenames) == 0): if ((#$filenames) == 0):
say "Warning: reading from stdin (ctrl-d to abort). To avoid this message, use nomsu -t autoformat -" say "Warning: reading from stdin (ctrl-d to abort). To avoid this message, use nomsu -t format -"
$filenames = ["stdin"] $filenames = ["stdin"]
for $filename in $filenames: for $filename in $filenames: