2018-11-26 16:28:06 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.12.12.8
|
2018-07-23 15:54:27 -07:00
|
|
|
#
|
|
|
|
Auto-format Nomsu code. Usage:
|
2018-11-19 17:37:37 -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)
|
2018-11-20 14:52:59 -08:00
|
|
|
for %filename in %args.extra_args:
|
|
|
|
%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
|
|
|
|
2018-11-20 14:52:59 -08:00
|
|
|
if %args."-i":
|
|
|
|
write %formatted to file %filename
|
|
|
|
..else:
|
|
|
|
say %formatted inline
|