CLIPS and JESS are lispy languages used for AI and rules-engines. Their EMACS are derived from lisp-mode. The most important form to format correctly is defrule, it helps for readability. By default the normal lisp-mode formatting is used like this:
(defrule any-foo
"This is a rule for any-foo."
?f <- (foo)
=>
(do-something-to ?f))
The desired formatting would be like this with the optional documentation 2 chars in and the right arrow two chars in and everything else 6 chars in like this:
(defrule any-foo
"This is a rule for any-foo."
?f <- (foo)
=>
(do-something-to ?f))
There are a lot of resources out there about custom indentation in EMACS, but this one jumped out because it made wonder if I could just intercept the formatting of anything matching the right arrow and intercepting that. When I read further, I understood it more like you may write a custom formatting function for a symbolic expression, but, the right arrow is not that. I don't want to write a formatting function for the whole top level, and am not sure how yet any way.
What is the right way to get this desired formatting style?
defmacro:(declare (indent <how>)).<how>can name a function that Emacs will call with your code to to indent the arguments. I cannot remember at the moment, but I think it was in the info manual that comes with Emacs on how to do it. So tryC-h iand work from there. – wvxvw Jan 13 at 15:53