I just switched to Emacs + ESS for R programming, and am using the newest bundle (24.3) from Vincent Goulet.
I wanted a good environment for knitr
and .Rmd files, so I installed polymode
from MELPA. I also have the (add-to-list 'auto-mode-alist '("\\.Rmd" . poly-markdown+r-mode))
in my .emacs file.
When I started editing .Rmd files in polymode
, I ran into an annoying behaviour. Inside R code blocks, but not outside, double double quotes ""
turn into umlauts ¨
, and double quotes + character, e.g. "a
turn into characters with umlauts, ä
. I'm guessing itmight have something to do with LaTeX and displaying umlauts, but have no idea on how to turn this behaviour off.
Is there some way to disable autoreplacing of double quotes, the same way you can disable replacing the underscore?