2018-12-30 19:04:34 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.12.12.8
|
2018-07-23 15:54:27 -07:00
|
|
|
#
|
|
|
|
Auto-format Nomsu code. Usage:
|
2018-12-30 19:04:34 -08:00
|
|
|
nomsu -t format [-i] file1 file2...
|
|
|
|
|
2018-12-18 19:23:20 -08:00
|
|
|
If the "-i" flag is used, the file will be edited in-place.
|
|
|
|
If no files are passed in, this will read from stdin.
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-17 17:53:07 -07:00
|
|
|
use "lib/os.nom"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-18 19:23:20 -08:00
|
|
|
$filenames = $(COMMAND LINE ARGS).extras
|
|
|
|
if ((#$filenames) == 0):
|
2018-12-18 19:25:10 -08:00
|
|
|
say "Warning: reading from stdin (ctrl-d to abort). To avoid this message, use nomsu -t format -"
|
2018-12-18 19:23:20 -08:00
|
|
|
$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"
|
2018-12-30 19:04:34 -08:00
|
|
|
$leading_indent = ($file, matching "[\n]*([ ]*)")
|
2018-12-14 20:21:03 -08:00
|
|
|
$code = (NomsuCode from ($Source $filename 1 (size of $file)) $file)
|
2018-12-19 02:27:10 -08:00
|
|
|
try:
|
|
|
|
$tree = ($code parsed)
|
|
|
|
..and if it barfs $msg:
|
|
|
|
if $(COMMAND LINE ARGS)."-q":
|
|
|
|
$formatted = $file
|
|
|
|
..else:
|
|
|
|
say $msg
|
2018-12-30 19:04:34 -08:00
|
|
|
|
2018-12-19 02:27:10 -08:00
|
|
|
if ($tree and (not $formatted)):
|
2018-12-30 19:04:34 -08:00
|
|
|
$formatted =
|
|
|
|
.."\$leading_indent\($tree as nomsu, text, with "\n" -> "\n\$leading_indent")"
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-19 02:27:10 -08:00
|
|
|
if $formatted:
|
|
|
|
if $(COMMAND LINE ARGS)."-i":
|
|
|
|
write $formatted to file $filename
|
|
|
|
..else:
|
|
|
|
say $formatted inline
|