Emacs "suddenly" stopped automatically inserting the correct quotes once I hit the " key. It seems to me that this is due to a duplicate installation of some package, but I can't put my finger on it.
There are some commands that seem to duplicates, so far I stumbled over the following:
latex-mode
LaTeX-mode
tex-insert-quote
TeX-insert-quote (")
tex-insert-braces
TeX-insert-braces (C-C {)
Sadly, even though helm tells me that TeX-insert-quote
is bound to "
, it does not seem to trigger. And even if I call it manually, it simply inserts "
into my text instead of ``correct'' quotes.
Can anybody point me out where to start diagnosing this behaviour?
Edit: After running C-h k "
emacs tells me that it's indeed bound to TeX-insert-quote
. So the trouble is not the binding, but something else.
"
withC-h k "
. Start your Emacs without your init file (emacs -Q
). Then, recursively bisect your init file (comment out components) until you find out what's causing the conflict. – Dan Jan 28 '16 at 13:30