[Vim-latex-devel] Abundant Prompt
Brought to you by:
srinathava,
tmaas
From: Max H. <max...@we...> - 2006-03-19 20:16:19
|
Hello, I just started using the latex-suite seriously and am pretty impressed so far. However there is a little disturbing quirk: Whenever I compile my TeX file I am prompted two times by vim until the file is completely done. I have my .vimrc quoted below and yes I have to compile with those dependencies since I am working with pstricks a lot and dvi doesn't get all things correctly. I am using Ubuntu 5.10 with vim 6.3 and vim-latexsuite .20041219-2 So how do I get those prompts out of the way and increase productivity? Best regards, Max Hoffmann. $cat .vimrc set autowrite syntax on set autoindent set smartindent set showmatch set incsearch "latexsuite plugin filetype plugin on filetype indent on set sw=2 set iskeyword+=: "let g:Tex_Env_theorem "\\pspicture(0,0)(,)(,)\<CR>\<CR>\\endpspicture" let g:Tex_DefaultTargetFormat='pdf' let g:Tex_CompileRule='latex $*' let g:Tex_CompileRule_ps='dvips -Ppdf -o $*.ps $*.dvi' let g:Tex_CompileRule_pdf='ps2pdf $*.ps' let g:Tex_FormatDependency_pdf = 'dvi,ps,pdf' let g:Tex_IgnoredWarnings=' \"Underfull\n". \"Overfull\n". \"specifier changed to\n". \"You have requested\n". \"Missing number, treated as zero.\n". \"There were undefined references\n". \"Citation %.%# undefined\n" \"Unused global option"' augroup MyIMAPs au! au VimEnter * call IMAP('FIG',"\\begin{figure}[h]\\begin{center}\<CR>< ++>\<CR>\\caption{<++>}\<CR>\\end{center}\\end{figure}\<CR><++>",'tex') augroup END -- Max Hoffmann <max...@we...> |