[Tex/LaTex] Vim-Latex: Double-Quote Automatically Replaced

vim

I use Vim with Vim-Latex plugin to edit my LaTeX documents. I have the problem that whenever I want to insert a double quote ("), it automatically get replace by (“). Any idea how can I disable that while still having Vim-Latex enabled?

Best Answer

Add let g:Tex_SmartKeyQuote=0 to $VIM/ftplugin/tex.vim (create that file if necessary), where $VIM corresponds to ~/.vim for unixy operating systems and ~/vimfiles for Windows.

There are more configuration variables, see the latexsuite manual.