nomsu/tools/format.nom

32 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-12-14 20:21:03 -08:00
#!/usr/bin/env nomsu -V5.12.12.8
2018-07-23 15:54:27 -07:00
#
Auto-format Nomsu code. Usage:
nomsu -t format [-i] file1 file2...
If the "-i" flag is used, the file will be edited in-place.
If no files are passed in, this will read from stdin.
use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$filenames = $(COMMAND LINE ARGS).extras
if ((#$filenames) == 0):
say "Warning: reading from stdin (ctrl-d to abort). To avoid this message, use nomsu -t format -"
$filenames = ["stdin"]
for $filename in $filenames:
2018-12-14 20:21:03 -08:00
$file = (read file $filename)
unless $file:
barf "File does not exist: \$filename"
$leading_indent = ($file|matching "[\n]*([ ]*)")
$code = (NomsuCode from ($Source $filename 1 (size of $file)) $file)
$tree = ($code parsed)
$formatted = "
\$leading_indent\((($tree as nomsu)|text)|with "\n" -> "\n\$leading_indent")"
2018-11-19 17:37:37 -08:00
if $(COMMAND LINE ARGS)."-i":
2018-12-14 20:21:03 -08:00
write $formatted to file $filename
..else:
2018-12-14 20:21:03 -08:00
say $formatted inline