lisp-format
lisp-format copied to clipboard
A tool to format lisp code. Designed to mimic clang-format.
Hey, when I do `lisp-format foo.lisp` with `foo.lisp` being: ``` (let ((foo 1)) (xoo "hey")) foo) ``` I get the output ``` (let ((foo 1)) (xoo "hey")) foo) ``` Nothing...
The link https://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format/git-clang-format in the Readme doesn't work anymore. I used this instead: https://raw.githubusercontent.com/llvm-mirror/clang/master/tools/clang-format/git-clang-format
Hello everyone, Thank you so much for this awesome tool! I really enjoy it, and it sure seems to work for files on disk. However, when I try to get...
Fixes #9.
Many Linux distros use a different path from `/bin/bash` for the Bash executable. It would be better to search for Bash on the `PATH` with `#!/usr/bin/env bash`.