Is there any suitable program to fix the indents of a R script already written?
For example if it is fed an script like this:
foo = function(x) {
a = 1
print(a)
}
It converts it to:
foo = function(x) {
a = 1
print(a)
}
Or better?