How to enable the TAB key in Emacs

2

Debian Linux 7 and I am testing the Emacs editor for code editing. I have already made several customizations in the .emacs file but I can not make the TAB key work to indent the codes. When I press the TAB key in emacs, nothing happens.

Can anyone give me some clue on how to enable the TAB key in Emacs?

    
asked by anonymous 15.06.2014 / 01:06

1 answer

2

Following the documentation link

edit your .emacs file and add this:

# Tab em todos modos de edicao    
(global-set-key (kbd "TAB") 'self-insert-command);
    
16.06.2014 / 02:10