[Vim-latex-cvs] vimfiles/doc latex-suite.xml,1.16,1.17 latex-suite.txt,1.39,1.40
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-09-03 06:49:16
|
Update of /cvsroot/vim-latex/vimfiles/doc In directory sc8-pr-cvs1:/tmp/cvs-serv9012 Modified Files: latex-suite.xml latex-suite.txt Log Message: - descriptions of the new g:Tex_UseMakefile and also g:Tex_UsePython and g:Tex_Debug options. Index: latex-suite.xml =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/doc/latex-suite.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** latex-suite.xml 2 Sep 2003 07:08:28 -0000 1.16 --- latex-suite.xml 3 Sep 2003 06:49:12 -0000 1.17 *************** *** 2707,2710 **** --- 2707,2753 ---- behavior which they influence. </para> + <section id="ls-general-purpose-settings"> + <title>General Settings</title> + <section id="Tex_Debug"> + <title>Tex_Debug</title> + <para> + <informaltable frame="all"> + <tgroup cols="2"> + <tbody> + <row><entry>Type</entry><entry>boolean</entry></row> + <row><entry>Default Value</entry> + <entry><literal>0</literal></entry></row> + </tbody> + </tgroup> + </informaltable> + <para> + If set to 1, then latex-suite will create certain global debug + statements which can be printed by doing + <programlisting>:call Tex_PrintDebug()</programlisting> + </para> + </para> + </section> + <section id="Tex_UsePython"> + <title>Tex_UsePython</title> + <para> + <informaltable frame="all"> + <tgroup cols="2"> + <tbody> + <row><entry>Type</entry><entry>boolean</entry></row> + <row><entry>Default Value</entry> + <entry><literal>1</literal></entry></row> + </tbody> + </tgroup> + </informaltable> + <para> + If &ls; detects that your vim is python enabled (using + <literal>has('python')</literal>), then it tries to use python in + certain places to speed things up. If this misbehaves, you can set + this to zero, in which case, &ls; will use vimscript to accomplish + the same. + </para> + </para> + </section> + </section> <section id="customizing-place-holders"> <title>Place-Holder Customization</title> *************** *** 3341,3344 **** --- 3384,3416 ---- </para> </section> + <section id="Tex_UseMakefile"> + <title>Tex_UseMakefile</title> + <para> + <informaltable frame="all"> + <tgroup cols="2"> + <tbody> + <row><entry>Type</entry><entry>boolean</entry></row> + <row><entry>Default Value</entry> + <entry><literal>1</literal></entry></row> + </tbody> + </tgroup> + </informaltable> + <para> + When set to 1, then if a <literal>makefile</literal> or + <literal>Makefile</literal> is present in the current directory, then + &ls; sets the <literal>makeprg</literal> option to just + <literal>"make <target>"</literal>, where + <literal><target></literal> is the target format chosen using + the <literal>TCTarget</literal> or <literal>TTarget</literal> + commands. + </para> + <para> + When set to 0, then &ls; will set the <literal>makeprg</literal> + setting to whatever is defined by the <link + linkend="Tex_CompileRule_format">g:Tex_CompileRule_target</link> + setting. + </para> + </para> + </section> </section> <section id="viewer-customization"> *************** *** 3624,3627 **** --- 3696,3704 ---- <tbody> <row> + <entry>Artur R. Czechowski</entry> + <entry>maintains the BSD package of latex-suite. Lots of valuable + feedback.</entry> + </row> + <row> <entry> Lubomir Host *************** *** 3629,3633 **** <entry> provided the diacritics and also helped in development. ! <para></para> </entry> </row> --- 3706,3710 ---- <entry> provided the diacritics and also helped in development. ! </entry> </row> *************** *** 3638,3642 **** <entry> valuable suggestions during development. ! <para></para> </entry> </row> --- 3715,3719 ---- <entry> valuable suggestions during development. ! </entry> </row> *************** *** 3648,3652 **** his variation of Stephen Riehm's bracketing system is used in latex-suite. ! <para></para> </entry> </row> --- 3725,3729 ---- his variation of Stephen Riehm's bracketing system is used in latex-suite. ! </entry> </row> *************** *** 3659,3663 **** The implementation of the templates also borrows from mu-template.vim by him. ! <para></para> </entry> </row> --- 3736,3740 ---- The implementation of the templates also borrows from mu-template.vim by him. ! </entry> </row> *************** *** 3669,3673 **** author of ltags and also provided the nice tip about forward / reverse search on DVI documents. ! <para></para> </entry> </row> --- 3746,3750 ---- author of ltags and also provided the nice tip about forward / reverse search on DVI documents. ! </entry> </row> *************** *** 3678,3682 **** <entry> the extremely helpful bracketing system is from him. ! <para></para> </entry> </row> --- 3755,3759 ---- <entry> the extremely helpful bracketing system is from him. ! </entry> </row> *************** *** 3686,3691 **** </entry> <entry> ! provided some macros/folding elements. ! <para></para> </entry> </row> --- 3763,3769 ---- </entry> <entry> ! provided macros/folding elements. Continued feedback, ! bug-reports/fixes. ! </entry> </row> *************** *** 3697,3701 **** for ExecMap(), the clever little function which makes typing visual mode mappings so much easier and error-free. ! <para></para> </entry> </row> --- 3775,3779 ---- for ExecMap(), the clever little function which makes typing visual mode mappings so much easier and error-free. ! </entry> </row> *************** *** 3707,3711 **** for the comprehensive BibT() function for entering bibtex entries. ! <para></para> </entry> </row> --- 3785,3789 ---- for the comprehensive BibT() function for entering bibtex entries. ! </entry> </row> *************** *** 3716,3720 **** <entry> for libList.vim ! <para></para> </entry> </row> --- 3794,3798 ---- <entry> for libList.vim ! </entry> </row> *************** *** 3726,3730 **** useful discussion and also a lot of bug fixes. the %%fakesection in folding.vim. ! <para></para> </entry> </row> --- 3804,3808 ---- useful discussion and also a lot of bug fixes. the %%fakesection in folding.vim. ! </entry> </row> Index: latex-suite.txt =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/doc/latex-suite.txt,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** latex-suite.txt 2 Sep 2003 07:08:28 -0000 1.39 --- latex-suite.txt 3 Sep 2003 06:49:12 -0000 1.40 *************** *** 12,16 **** macros to speed up editing LaTeX documents to functions for forward searching .dvi documents. Latex-suite has been possible because of the contributions of ! many people. Please see latex-suite-credits [|ls_a_dt|] for a list of people who have helped. --- 12,16 ---- macros to speed up editing LaTeX documents to functions for forward searching .dvi documents. Latex-suite has been possible because of the contributions of ! many people. Please see latex-suite-credits [|ls_a_dx|] for a list of people who have helped. [...1321 lines suppressed...] ! Alan G Isac for the comprehensive BibT() function for entering bibtex ! entries. ! Gontran Baerts for libList.vim ! Peter Heslin useful discussion and also a lot of bug fixes. the ! %%fakesection in folding.vim. A large number of functions in latex-suite come from various other people. Some *************** *** 2785,2789 **** out who has done what. ! *latex-suite-maintainer* *ls_a_dX* The current maintainer(s) of latex-suite is(are) --- 2812,2816 ---- out who has done what. ! *latex-suite-maintainer* *ls_a_eb* The current maintainer(s) of latex-suite is(are) |