A scheme code formatter
$ scheme-format path/to/my/scheme/file.scm
Formatted scheme code is output to Standard Out.
If you'd like to edit a file in place you can use the -i
option
$ scheme-format -i path/to/my/scheme/file.scm
It is recommended that you integrate this with your favorite editor such that it can replace the current version of your code with the formatted one produced by this.
See the GitHub Issues for future enhancements.
This formatter is ok, but needs some love. Check out the GitHub Issues for some more details. The long term goal is to bring it more in line with the scheme-style style guide.
We can, of course, add in some custom formatting options, but the default should be close to that. Any help you can provide to move us forward would be greatly appreciated.
A straight port of code-formatter (previously known as "scheme-format") to Chicken 5.x with a minor amount of cleanup.
Requires Chicken Scheme 5.x
Just run the install-deps.sh
and build.sh
files and add the resulting scheme-format
file to your $PATH
If you edit the etc.scm
or format.scm
files you'll want to run
csc -s etc.scm -j etc
csc -s format.scm -j format
To regenerate the .import.scm
and .sofiles before running the bulid script, or manually running
csc -static main.scm -o scheme-formatter`