[Vim-latex-cvs] vimfiles/doc latex-suite.xml,1.33,1.34 latex-suite.txt,1.54,1.55
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2004-05-22 01:30:49
|
Update of /cvsroot/vim-latex/vimfiles/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3260 Modified Files: latex-suite.xml latex-suite.txt Log Message: Index: latex-suite.xml =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/doc/latex-suite.xml,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** latex-suite.xml 16 May 2004 18:42:26 -0000 1.33 --- latex-suite.xml 22 May 2004 01:30:39 -0000 1.34 *************** *** 1543,1560 **** To complete a <literal>|\ref|</literal> command, position yourself between the curly braces of a <literal>\ref</literal> command and press ! <literal><F9></literal>. For example, you can press ! <literal><F9></literal> just after <literal>\ref{</literal> or ! after <literal>\ref{eqn:</literal>. &ls; will search for ! <literal>\label</literal>'s in the main file corresponding to the file ! being presently edited and display the results in two windows as ! desribed in section <link linkend="ls-completion-usage" ! endterm="ls-completion-usage.title"></link>. ! See <link linkend="latex-master-file">latex-master-file</link> for a ! description of how &ls; finds out which file is the master file ! corresponding to the current file. &ls; will also search recursively ! for <literal>\label</literal>'s in all files ! <literal>\include</literal>'d or <literal>\input</literal>'ed in the ! master file. </para> <para> --- 1543,1560 ---- To complete a <literal>|\ref|</literal> command, position yourself between the curly braces of a <literal>\ref</literal> command and press ! <literal><F9></literal>. &ls; will present you with a list of ! <literal>\label</literal>'s as described <link linkend="ls-completion-usage" ! endterm="ls-completion-usage.title">here</link>. You can also press ! <literal><F9></literal> after typing a part of the label, for ! example, a common prefix which a group of <literal>\label</literal>'s ! might share. In this case, &ls; will list only those ! <literal>\label</literal>'s which start with that prefix. ! </para> ! <para> ! See <link ! linkend="Tex_UseSimpleLabelSearch">Tex_UseSimpleLabelSearch</link> for ! a description of the algorithm used by &ls; to search for ! <literal>\label</literal>'s and how to change it. </para> <para> *************** *** 1565,1577 **** <literal>\label</literal>'s. </para> - <para> - When you press <literal><F9></literal> after typing - <literal>\ref{eqn:</literal> then &ls; will only list - <literal>\label</literal>'s which begin with <literal>eqn:</literal> - If you press <literal><F9></literal> after a simple - <literal>\ref{</literal>, then &ls; will list all - <literal>\label</literal>'s in all the tex files in the present - directory. - </para> <note> <title>HINT</title> --- 1565,1568 ---- *************** *** 3635,3638 **** --- 3626,3659 ---- </para> </section> + <section id="Tex_UseSimpleLabelSearch"> + <title>Tex_UseSimpleLabelSearch</title> + <para> + This variable controls whether &ls; uses a simple algorithm to search + for possible completions of a <literal>\label</literal> command. When + set to 1, &ls; will search simply for <literal>\label</literal>'s in + all the <literal>.tex</literal> files found in the present directory, + ignoring whether they are part of a latex project or not. + </para> + <para> + When set to 0, then &ls; will use the following algorithm to determine + the list of possible completions: + </para> + <orderedlist> + <listitem>First &ls; will determine if it can find a master-file + specification.</listitem> + <listitem>If it can, then &ls; will search for + <literal>\label</literal>'s in that file first.</listitem> + <listitem>If the master file <literal>\include</literal>'s or + <literal>\input</literal>'s any other files, then &ls; will search + for <literal>\label</literal>'s in those files. The search for + <literal>\include</literal>'d and <literal>\input</literal>'ed files + is recursive, i.e, if an <literal>\include</literal>'d file + <literal>\include</literal>'s another file, then that will be + searched as well and so on.</listitem> + <listitem>If &ls; cannot find a master file specified for this file, + then it will simply search for <literal>\labels</literal> in the + present file.</listitem> + </orderedlist> + </section> <section id="Tex_RememberCiteSearch"> <title>g:Tex_RememberCiteSearch</title> Index: latex-suite.txt =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/doc/latex-suite.txt,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** latex-suite.txt 16 May 2004 18:42:48 -0000 1.54 --- latex-suite.txt 22 May 2004 01:30:39 -0000 1.55 *************** *** 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_dJ|] 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_dK|] for a list of people who have helped. [...969 lines suppressed...] --- 3113,3117 ---- ================================================================================ ! Credits *ls_11* *ls_a_dK* *latex-suite-credits* *************** *** 3129,3133 **** out who has done what. ! *latex-suite-maintainer* *ls_a_eq* The current maintainer(s) of Latex-Suite is(are) --- 3150,3154 ---- out who has done what. ! *latex-suite-maintainer* *ls_a_er* The current maintainer(s) of Latex-Suite is(are) |