Re: [Vim-latex-devel] Changing the makeindex program to another
Brought to you by:
srinathava,
tmaas
From: Berta M. <ber...@ar...> - 2004-06-06 07:14:18
|
I try it as the first possibility :) But the problem occurs. The program 'makeindex' is called (for example on Linux) $makeindex my-file.ind latex-suite also calls this program this way. But the (my) program 'csindex' (and script) must be call as follows $csindex.bat my-file (because of additional program which change the encoding of file before and after running 'csindex') Note: The program 'csindex' is a Czech version of 'makeindex', and I think that people have several kinds of "makeindex" program for their native languages and alphabet. So I must change the ftplugin/latex-suite/compiler.vim. There is a "Running makeindex..." subsection. let temp_mp = &mp | let &mp='csindex.bat $*' instead of let temp_mp = &mp | let &mp='makeindex $*.idx' Thank You for Your hint! Latex-suite helps me very much. I write LaTeX documents faster then before with other programs (thanks also goes to vim :) Milan On Sat, Jun 05, 2004 at 06:40:48PM +0200, Srinath Avadhanula wrote: > On Sat, 5 Jun 2004, Berta Milan wrote: > > > Hi! I am going to be short: How can I change the program > > 'makeindex' to another program (I want to use program > > 'csindex' instead)? > > As of now, this is unfortunately, not customizable. In the future, this > will be a settable thing. for now, how about making a copy of csindex > and call it makeindex? > > Srinath |