[Tex/LaTex] LaTeX-Suite installation not working

vimvim-latex

I've recently installed Vim for Windows 10. After this I have installed latex-suite files in the $HOME/vimfiles/bundle directory (I'm using pathogen). I've configured my _vimrcfile as following:

execute pathogen#infect()
syntax on
filetype plugin on

set shellslash
set grepprg=grep\ -nH\ $*
set nocompatible

filetype indent on

let g:tex_flavor='latex'

When running :scriptnames I can see that the latex scripts are being loaded, but the Tex-Suite menu is not showing up in gvim. I have looked around a tried different solutions, but they have not worked.

Any ideas?

Best Answer

Thanks to Dai Bowen in the comments, I was able to find the problem. It seems like the Vim-Latex plugin only loads once you open an already existing .tex file, not when one is created in Vim.

I simply created a new file and saved it as a .tex file and then reopened it.

Related Question