Scheme indenting
Submitted by Thursday, 10 November, 2005 - 11:43
on
Hi there,
I've been using jedit for a short while now for various languages and on the whole I am very pleased but there is one thing that bugs the hell out of me. If I am writing scheme then it indents the closing bracket for me, but I don't want this. Is there any way to change it?
Example (the # characters represent spaces, current operation is first - desired is second):
(if (= i 10)
##(begin
####(do something)
####)
##)
what I want is:
(if (= i 10)
##(begin
####(do something)
##)
)
Thanks in advance!
I've been using jedit for a short while now for various languages and on the whole I am very pleased but there is one thing that bugs the hell out of me. If I am writing scheme then it indents the closing bracket for me, but I don't want this. Is there any way to change it?
Example (the # characters represent spaces, current operation is first - desired is second):
(if (= i 10)
##(begin
####(do something)
####)
##)
what I want is:
(if (= i 10)
##(begin
####(do something)
##)
)
Thanks in advance!