nomsu/lib/tools/format.nom

43 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-03-20 14:15:17 -07:00
#!/usr/bin/env nomsu -V7
###
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 the "-q" flag is used and an error occurs, the original file will be printed.
If no files are passed in, this will read from stdin.
use "filesystem"
use "commandline"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
command line program with $args:
$filenames = $args.extras
2019-03-20 14:15:17 -07:00
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:
$file = (read file $filename)
unless $file:
fail "File does not exist: \$filename"
$leading_indent = ($file, matching "^\n*([ ]*)")
2019-03-20 14:15:17 -07:00
$code = (NomsuCode from (Source $filename 1 #$file) $file)
try:
$tree = ($code parsed)
2019-03-20 14:15:17 -07:00
$formatted = ($tree as nomsu, text, indented $leading_indent)
..if it fails with $msg:
if $args.q:
$formatted = $file
..else:
say $msg
2019-03-20 14:15:17 -07:00
do next $filename
2019-03-20 14:15:17 -07:00
if $args.i:
write $formatted to file $filename
..else:
say $formatted inline