One of the holy wars among developers .. tab vs spaces ..

In Linux, most of old codes are using tabs ..

but I like 4 spaces instead of tab because everybody can see my codes exactly as I see.

:)

However, we sometime have to be patient on other’s codes ..

1
2
3
4
(if (save-excursion
(beginning-of-buffer)
(search-forward "\t" (min 1000 (point-max)) t))
(setq tab-width 8))

Leave a comment ?