I'm used to have 4 spaces of Tab width. YASnippets uses 2 spaces in its snippets for instance:
<div id="$1">
$0
</div>
I thought this would turn it into 4 spaces:
<div id="$1">
$0
</div>
but no luck...
So I also tried:
(setq-default tab-width 4)
(setq-default indent-tabs-mode t)
(setq tab-stop-list '(4 8 12 16))
but no luck again
Is there another setting that helps in this kind of situation?