I'm an amateur in Emacs and I would like to change TAB
with C-q TAB
. I used the code:
(define-key key-translation-map (kbd "TAB") (kbd"C-q TAB"))
But by doing so, I need to press TAB
twice in order to get a indent and under the screen it shows C-q TAB TAB
.
Why would this happen? How can I get the indent only by pressing TAB
once?