10

Damn you xcode...

Comments
  • 4
    I recently read that devs using spaces instead of tabs for indenting code get higher salary! My guess is that because of more key taps it *sounds* like they are producing more code.
  • 2
    Use
    sed -e "s/\t/ /g" -i <filename>
    After code is fine, it put spaces for tabs
    If have to change code do
    sed -e "s/ /\t/g" -i <filename>
  • 3
    Why??? Just why??
Add Comment