I often use AuCTeX to make my latex documents so i use the dollar $ sign a lot.
If autopair minor mode is enabled, when you insert a ( it automatically inserts a ) (there are some exceptions where it doesn't, for example, if you insert it after a \, but i like the exceptions) and put the cursor between them, so you have (<cursor>), now if you type a+b), you get (a+b) and not (a+b)).
I would like to have a similar behaviour with $ that works only in TeX-mode when i enable autopair-mode.
I've tried adding the followint to my .emacs:
(add-hook 'TeX-mode-hook
#'(lambda ()
(push '(?$ . ?$)
(getf autopair-extra-pairs :everywhere))))
but it does not work for some reason.
The problem is that you usually have a lot of expression $...$ and when you insert a single $, all the text before that $ gets a wrong coloration which is annoying and then after you close the initial $ the text after the initial $ gets fixed.
TeX-mode-hookdefinitely correct? It seems to be an all lower-casetex-mode-hookin Emacs 24. – phils May 7 '12 at 1:24TeX-mode-hookthat work properly – xD13G0x May 7 '12 at 2:16