nomsu/tools/autoformat.nom

28 lines
846 B
Plaintext
Raw Normal View History

2018-10-31 15:05:17 -07:00
#!/usr/bin/env nomsu -V4.8.10
2018-07-23 15:54:27 -07:00
#
Auto-format Nomsu code. Usage:
2018-10-31 15:05:17 -07: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.
use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%args = (command line args)
%inplace = (no)
if (%args.1 is "-i"):
%inplace = (yes)
%args::remove index 1
for %path in %args:
for file %filename in %path:
unless (%filename::matches "%.nom$"): do next %filename
2018-09-14 19:17:09 -07:00
%formatted = "\
..#!/usr/bin/env nomsu -V\(Nomsu version)
\((parse (read file %filename) from %filename) as nomsu)"
if %inplace:
write %formatted to file %filename
..else: say %formatted