Hi,
Is it possible to specify indentation for read macros?
Slime already indents built-in read macros correctly, eg
#(1 2 3 4 5 6)
I have a read macro with the syntax #[ncol]v[type][:kind](e1 e2 ... ), eg
#2vs:hermitian(1 2 2 4)
Slime currently aligns this as
#2vs:hermitian(1 2 2 4)
Would it be possible to give it a hint to align it on the parenthesis, eg
#2vs:hermitian(1 2 3 4)
Thanks,
Tamas