(setq-default
tab-width 4 ; Set tab stops
tab-stop-list '(4 8 12 16 20 24 28 32 36 40 44
48 52 56 60 64 68 72 76 80 84)
)
coloque isso no seu .emacs.d/init.el
e use M-i
para ir para a próxima posição da guia
ATUALIZAÇÃO:
(defun my-tab-width ()
"set tab-width as local variable"
(interactive)
(progn
(set (make-local-variable 'tab-width) 4)
(set (make-local-variable 'tab-stop-list)
'(4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84))))
chame essa função iterativamente com M-x
ou coloque um gancho no modo desejado para carregar automaticamente
(add-hook 'php-mode-hook 'my-tab-width)