I just found Eclipse Juno for C/C++ "Insert space for tab" doesn't work. Juno for Java works. Anybody has the same issue? Is there a way to run a script to change tabs to 4-spaces in all .cpp and .h files before I check in my changes? Anybody can help with the script? thanks,
Edit:
I am in Linux.
Edit2
this works too:
find ./ -name '*.cpp' -exec sed -i 's/\t/ /g' {} \;