2018-11-11 15:50:46 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.10.12.7
|
2018-07-23 15:54:27 -07:00
|
|
|
#
|
|
|
|
Auto-format Nomsu code. Usage:
|
2018-11-11 16:26:38 -08:00
|
|
|
nomsu tools/autoformat.nom [-i] file1 file2 directory1 ...
|
2018-07-23 15:54:27 -07:00
|
|
|
If the first argument is "-i", modifications will be performed in-place. Otherwise,
|
|
|
|
the formatted code will be printed.
|
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-07-19 20:41:31 -07:00
|
|
|
%args = (command line args)
|
|
|
|
%inplace = (no)
|
|
|
|
if (%args.1 is "-i"):
|
|
|
|
%inplace = (yes)
|
2018-08-29 15:59:30 -07:00
|
|
|
%args::remove index 1
|
2018-07-19 20:41:31 -07:00
|
|
|
|
|
|
|
for %path in %args:
|
2018-11-17 14:38:05 -08:00
|
|
|
if (%path == "-"): %path = "stdin"
|
2018-07-17 17:53:07 -07:00
|
|
|
for file %filename in %path:
|
2018-11-17 14:38:05 -08:00
|
|
|
unless ((%filename::matches "%.nom$") or (%filename == "stdin")): do next %filename
|
2018-11-11 16:26:38 -08:00
|
|
|
%contents = (read file %filename)
|
2018-11-11 18:34:20 -08:00
|
|
|
%code = (NomsuCode from (Source %filename 1 (size of %contents)) %contents)
|
2018-11-11 16:26:38 -08:00
|
|
|
%tree = (%code parsed)
|
|
|
|
%formatted = ((%tree as nomsu)::text)
|
2018-07-20 20:27:15 -07:00
|
|
|
if %inplace:
|
|
|
|
write %formatted to file %filename
|
2018-11-11 15:50:46 -08:00
|
|
|
..else:
|
2018-11-17 14:38:05 -08:00
|
|
|
say %formatted inline
|