[Vim-latex-cvs] vimfiles/doc latex-suite.txt,1.18,1.19
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-04-13 02:03:57
|
Update of /cvsroot/vim-latex/vimfiles/doc In directory sc8-pr-cvs1:/tmp/cvs-serv25983 Modified Files: latex-suite.txt Log Message: improvements in the newly added "Latex Completion" section. Index: latex-suite.txt =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/doc/latex-suite.txt,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** latex-suite.txt 7 Apr 2003 20:53:27 -0000 1.18 --- latex-suite.txt 13 Apr 2003 02:03:53 -0000 1.19 *************** *** 1,5 **** *latex-suite* Tools for an enhanced LaTeX environment in Vim For Vim version 6.0 and above. ! Last Change: Tue Dec 31 01:00 AM 2002 PST By Srinath Avadhanula <sr...@fa...>, --- 1,5 ---- *latex-suite* Tools for an enhanced LaTeX environment in Vim For Vim version 6.0 and above. ! Last Change: Sat Apr 12 06:00 PM 2003 By Srinath Avadhanula <sr...@fa...>, *************** *** 49,58 **** < set sw=2 > " TIP: if you write your \label's as \label{fig:something}, then if you ! " type in \ref{fig: and press <C-n> you will automatically cycle through " all the figure labels. Very useful! < set iskeyword+=: > " IMPORTANT: If you are a win32 user, then the following setting is " necessary in order to have latex called correctly from within Vim. ! < set shellslash --- 49,58 ---- < set sw=2 > " TIP: if you write your \label's as \label{fig:something}, then if you ! " type in \ref{fig: and press <C-n> you will automatically cycle through " all the figure labels. Very useful! < set iskeyword+=: > " IMPORTANT: If you are a win32 user, then the following setting is " necessary in order to have latex called correctly from within Vim. ! < set shellslash *************** *** 65,69 **** =========================================================================== TABLE OF CONTENTS *latex-suite-toc* {{{ ! Editing ======= --- 65,69 ---- =========================================================================== TABLE OF CONTENTS *latex-suite-toc* {{{ ! Editing ======= *************** *** 76,82 **** |latex-completion| ! Fast access to important data. Most notable are bibliography keys and ! labels, also fast inserting of file names in proper manner depending ! on context. Everything with one key! |latex-bracketing-macros| --- 76,82 ---- |latex-completion| ! Easily insert references to labels, bibliographic entries. The same ! key also works to insert file names for things such as ! \includegraphics{}. |latex-bracketing-macros| *************** *** 96,100 **** Compiling/Viewing/Searching =========================== ! |latex-compiling| A customizable compiler which can be dynamically reconfigured to change what kinds of warnings/errors to ignore. --- 96,100 ---- Compiling/Viewing/Searching =========================== ! |latex-compiling| A customizable compiler which can be dynamically reconfigured to change what kinds of warnings/errors to ignore. *************** *** 115,119 **** Folding ======= ! |latex-folding| Manual folding based on LaTeX syntax elements. --- 115,119 ---- Folding ======= ! |latex-folding| Manual folding based on LaTeX syntax elements. *************** *** 126,135 **** Miscelleneous Stuff =================== ! |latex-help| LaTeX's tex-info file translated into a Vim help file. ! ! |latex-dictionary| A dictionary of standard LaTeX terms. ! |latex-tools| This version of latex-suite also ships with an external tools: --- 126,135 ---- Miscelleneous Stuff =================== ! |latex-help| LaTeX's tex-info file translated into a Vim help file. ! ! |latex-dictionary| A dictionary of standard LaTeX terms. ! |latex-tools| This version of latex-suite also ships with an external tools: *************** *** 141,145 **** Latex-Suite ships with a very comprehensive set of insert mode and visual mode ! mappings and menu items to typeset most of the LaTeX elements. *placeholders* *placeholder* --- 141,145 ---- Latex-Suite ships with a very comprehensive set of insert mode and visual mode ! mappings and menu items to typeset most of the LaTeX elements. *placeholders* *placeholder* *************** *** 204,210 **** starting with an E. The following subsection describes this in detail. The sequence of 3 letters generally tries to follow the following rules: ! 1. All environment mappings begin with 'E' ! 2. If the environment can be broken up into 2 distinct words, such as flushright (flush + right), then the next 2 letters are the first --- 204,210 ---- starting with an E. The following subsection describes this in detail. The sequence of 3 letters generally tries to follow the following rules: ! 1. All environment mappings begin with 'E' ! 2. If the environment can be broken up into 2 distinct words, such as flushright (flush + right), then the next 2 letters are the first *************** *** 214,218 **** flushright (_f_lush + _r_ight) ---> EFR eqnarray (_e_qn + _a_rray) ---> EEA ! < If on the other hand, the environment name cannot be broken up into 2 distinct words, then the next 2 letters are the first 2 letters of the name --- 214,218 ---- flushright (_f_lush + _r_ight) ---> EFR eqnarray (_e_qn + _a_rray) ---> EEA ! < If on the other hand, the environment name cannot be broken up into 2 distinct words, then the next 2 letters are the first 2 letters of the name *************** *** 220,224 **** Example: > equation (_eq_uation) ---> EEQ ! < Of course, not every last one of the environments can follow this rule because of ambiguities. In case of doubt, pull down the --- 220,224 ---- Example: > equation (_eq_uation) ---> EEQ ! < Of course, not every last one of the environments can follow this rule because of ambiguities. In case of doubt, pull down the *************** *** 265,269 **** }}} --------------------------------------------------------------------------- ! Section Mappings: {{{ Inserts LaTeX sections: > --- 265,269 ---- }}} --------------------------------------------------------------------------- ! Section Mappings: {{{ Inserts LaTeX sections: > *************** *** 295,299 **** }}} --------------------------------------------------------------------------- ! AUC-TEX key bindings: {{{ These are simple 2 key expansions for some very commonly used LaTeX elements. --- 295,299 ---- }}} --------------------------------------------------------------------------- ! AUC-TEX key bindings: {{{ These are simple 2 key expansions for some very commonly used LaTeX elements. *************** *** 326,330 **** `| expands to \Big| `I expands to \int_{<++>}^{<++>}<++>" ! < (again, notice the convenient place-holders) --- 326,330 ---- `| expands to \Big| `I expands to \int_{<++>}^{<++>}<++>" ! < (again, notice the convenient place-holders) *************** *** 350,355 **** < where <l> is a letter ('a' to 'z' and 'A' to 'Z') > ! +} expands to \"{a} ! +: expands to \^{o} < Latex-Suite also ships with a function SmartBS(), which offers another --- 350,355 ---- < where <l> is a letter ('a' to 'z' and 'A' to 'Z') > ! +} expands to \"{a} ! +: expands to \^{o} < Latex-Suite also ships with a function SmartBS(), which offers another *************** *** 420,475 **** LATEX COMPLETION *latex-completion* {{{ ! After pressing "<magic_key>" (default <F9>) Latex-suite will try to complete ! argument of command (part between {}). Now available is support for \cite, ! \ref and their cousins. Also for \includegraphics and \bibliography ! (|latex-completion-explorer|). More to come. ! ! After you insert \cite{, you can press <F9> key (still in Insert mode). Two ! small windows will open. Just below your main window will be list of ! bibliography keys completed from all .bib files in directory of .tex file. ! Name this window as cwindow. Third window is context window to show next few ! lines of current entry (usually the most important info like author, title ! etc.). ! In cwindow you can move with j and k keys. Contex window will be automatically ! updated. Current line will be highlighted. Note: first line is still ! highlighted. This is normal line of |quickfix|. You can use instead j and k ! |:cnext| and |:cprev| commands. ! If information visible in context window is not enough you can use ! J and K keys to move content of context window (without leaving cwindow). ! After you choose correct bibentry press <cr>. Additional windows will close ! and \cite{ will be completed to \cite{bibentry}. q returns to main window and ! closes additional windows. ! If you remember beginning of desired key enter \cite{be. In cwindow will be ! shown only bibkeys beginning with "be". ! Very similar thing you can do with \ref{, after <F9> in cwindow will be ! visible all lines containing \label{...}. Also here use of prefix is possible. ! This works with all commads with "ref" or "cite" in them. Thus you will get ! bib completion with \citen, \citenum or \pageref. If you want to create your ! own command which use cite or ref mechanism make sure proper word is inside ! it. Example: > \newcommand{\pref}[1]{~(p.~\pageref{#1})} < ! <F9> works also with normal words. You can use it here: "Its name is ! tetr<F9>". Now Latex-suite will look in all .tex files in directory of edited ! file word which is beginning with "tetr". Note: <cr> has here different ! behavior. It does not try to complete word but moves you to location chosen in ! cwindow. Under MS-Windows you may need to make additional configuration of 'grepgrg' option. If you have grep program default value "grep -n" doesn't show file ! names if there is only one matching file. Place 'set grepprg=grep\ -Hn' in ! your _vimrc. ! Viewer module provides also three command-line utilities: |TLook|, |TLookBib| ! and |TLookAll|. ! Through g:Tex_ViewerCwindowHeight and g:Tex_ViewerPreviewHeight options in ! texrc you can configure height of these windows. *latex-completion-explorer* --- 420,504 ---- LATEX COMPLETION *latex-completion* {{{ ! This module provides an easy way to insert references to labels and ! bibliographic entries. Suppose you want to refer to an equation which is ! labelled as "eqn:eq-1" using the \label{eqn:eq-1} command. Somewhere in the ! text, you write "\ref{" with the cursor after the {. Now if you press <F9>, ! Latex-suite will try to search through all the .tex files in the present ! directory for lines beginning with "\label{". It will provide you with a list ! of all such matches in two small windows. ! +========================================================+ ! | I want to insert a reference to equation 1. Therefore | ! | I will write \ref{ | ! | | ! | | ! | | ! | | ! | | ! +--------------------------------------------------------+ ! +file1.tex + ! +========================================================+ ! |file1.tex|100| \label{eqn:eq-1} | ! |file1.tex|110| \label{eqn:eq-2} | ! |file2.tex|178| \label{tab:table1} | ! +--------------------------------------------------------+ ! +[Error List] + ! +========================================================+ ! |\begin{equation} | ! | e^{j*pi} + 1 = 0 \label{eqn:eq-1} | ! |\end{equation} | ! |And there was some text after this. I dont remember | ! +--------------------------------------------------------+ ! +file1.tex [Preview] + ! +========================================================+ ! The first window (shown as "[Error List]" above) is a |cwindow| containing a ! list of matches and you will be left in it. The window beneath it is a ! |preview-window| showing the context of the match. When you move up and down ! in the "[Error List]" window, the preview window will be scrolled to keep in ! sync with the label. Pressing the "J" and "K" keys in the "[Error List]" ! window scrolls the preview window enabling you to see more context if you ! desire. After positioning yourself on a label which you want to insert, press ! <CR>. This will automatically close all the new windows, take you back to the ! file being edited and insert the chosen label in place. Pressing "q" in the ! "[Error List]" window closes all windows without inserting anything. ! As can be seen above, the matches include everything which begins with \label. ! If you have the habit of prefixing all equation labels with "eqn:" or ! something similar, then you can restrict the matches to only equations by ! first typing "\ref{eqn:" and then pressing <F9>. This only brings up matches ! starting with "\label{eqn:" thus allowing you to skip table and figure labels. ! The same mechanism also works with citations by pressing <F9> after typing ! "\cite{". In the case of citations, Latex-suite automatically displays a list ! of bibliographic entries found in .bib files in the present directory. ! This mechanism in fact works with all commands with "ref" or "cite" in them. ! Thus you will get completion with \citen, \citenum or \pageref. If you want ! to create your own command which uses cite or ref mechanism make sure proper ! word is inside it. Example: > \newcommand{\pref}[1]{~(p.~\pageref{#1})} < ! ! <F9> works also with normal words. You can use it as: "Its name is tetr<F9>". ! Now Latex-suite will look in all .tex files in directory of edited file word ! which is beginning with "tetr". Note: <cr> has here different behavior. It ! does not try to complete word but moves you to location chosen in cwindow. Under MS-Windows you may need to make additional configuration of 'grepgrg' option. If you have grep program default value "grep -n" doesn't show file ! names if there is only one matching file. Place > ! set grepprg=grep\ -Hn ! in your _vimrc. ! ! The functionality in this module is also available via three command-line ! utilities: |TLook|, |TLookBib| and |TLookAll|. ! ! You can use the g:Tex_ViewerCwindowHeight and g:Tex_ViewerPreviewHeight ! options in texrc to configure the heights of the "[Error List]" and preview ! window. *latex-completion-explorer* *************** *** 506,510 **** and creates menu items based on the files found there. When you select a template from this menu, the file will be read in above the first line of the ! current file. A template file can use |placeholders| for easy cursor movement. In addition, --- 535,539 ---- and creates menu items based on the files found there. When you select a template from this menu, the file will be read in above the first line of the ! current file. A template file can use |placeholders| for easy cursor movement. In addition, *************** *** 550,554 **** {New} Creates a new (unnamed) buffer in the latex-suite/macros/ ! directory. Use the command :TexMacroNew in non-gui mode. --- 579,583 ---- {New} Creates a new (unnamed) buffer in the latex-suite/macros/ ! directory. Use the command :TexMacroNew in non-gui mode. *************** *** 556,560 **** Use :TexMacroEdit in non-gui mode. ! {Delete} Deletes the corresponding macro. Use the prefixed numbers for fast navigation of menus. Use :TexMacroDelete in non-gui mode. --- 585,589 ---- Use :TexMacroEdit in non-gui mode. ! {Delete} Deletes the corresponding macro. Use the prefixed numbers for fast navigation of menus. Use :TexMacroDelete in non-gui mode. *************** *** 564,573 **** }}} =========================================================================== ! LATEX COMPILING *latex-compiling* {{{ This functionality is available via the TeX-Suite menu. Latex-suite ships with a set of tools to compile LaTeX files into various ! formats and view them. If you are using commonly used LaTeX tools, then you should be all set as soon --- 593,602 ---- }}} =========================================================================== ! LATEX COMPILING *latex-compiling* {{{ This functionality is available via the TeX-Suite menu. Latex-suite ships with a set of tools to compile LaTeX files into various ! formats and view them. If you are using commonly used LaTeX tools, then you should be all set as soon *************** *** 588,591 **** --- 617,621 ---- |latex-compiler-customization| : customizing the output of the latex-compiler. + |latex-part-compiling| : compiling only a part of a file. *latex-compiler-target* *************** *** 609,613 **** |:TTarget| command. You can also set the viewer and compiler to different formats, by using the menu items or using the commands |:TCTarget| and ! |:TVTarget|. NOTE: If you try choosing a format for which a rule is not defined, you --- 639,643 ---- |:TTarget| command. You can also set the viewer and compiler to different formats, by using the menu items or using the commands |:TCTarget| and ! |:TVTarget|. NOTE: If you try choosing a format for which a rule is not defined, you *************** *** 635,641 **** NOTE: For win32 users user MikTeX, sometimes the latex compiler's output has a bug where a single number is split across different lines. In this case, put ! the included vim-latexSuite somewhere in your $PATH, make it executable and ! point g:tex_flavor to it. This is not always necessary, and you ! might want to try it without vim-latexSuite till you first notice any problem. *latex-master-file* --- 665,671 ---- NOTE: For win32 users user MikTeX, sometimes the latex compiler's output has a bug where a single number is split across different lines. In this case, put ! the included vim-latex somewhere in your $PATH, make it executable and point ! g:tex_flavor to it. This is not always necessary, and you might want to try it ! without vim-latexSuite till you first notice any problem. *latex-master-file* *************** *** 650,655 **** chapter.tex is being \input'ed into ~/thesis/main.tex, then create a file called > ! main.tex.latexmain ! < in the ~/thesis directory. This will then run "latex main.tex" NOTE: Here main.tex.latexmain is a different file from main.tex itself. --- 680,685 ---- chapter.tex is being \input'ed into ~/thesis/main.tex, then create a file called > ! main.tex.latexmain ! < in the ~/thesis directory. This will then run "latex main.tex" NOTE: Here main.tex.latexmain is a different file from main.tex itself. *************** *** 661,665 **** compiler plugin maintained by Artem Chuprina. The modifications allow this version to be customizable. i.e the user can set a verbosity level for the ! compiler. By default it is set up in a "non-verbose", "ignore-common-warnings" mode, --- 691,695 ---- compiler plugin maintained by Artem Chuprina. The modifications allow this version to be customizable. i.e the user can set a verbosity level for the ! compiler. By default it is set up in a "non-verbose", "ignore-common-warnings" mode, *************** *** 671,675 **** of 3 for instance means that messages of type 1-3 will be ignored. By default, the ignore level is set to 4. (You can change this by setting ! g:Tex_IgnoreLevel in your .vimrc). 1. LaTeX Warning: Underfull box ... --- 701,705 ---- of 3 for instance means that messages of type 1-3 will be ignored. By default, the ignore level is set to 4. (You can change this by setting ! g:Tex_IgnoreLevel in your .vimrc). 1. LaTeX Warning: Underfull box ... *************** *** 677,685 **** both these warnings (very common) are due to \hbox settings not being satisfied nicely. ! 3. LaTeX Warning: Specifier 'h' changed to 't'. This errors occurs when TeX is not able to correctly place a floating object at a specified location, because of which it defaulted to the top of the page. ! 4. LaTeX Warning: You have requested ..., This warning occurs in slitex when using the xypic package. 5. Missing number error: --- 707,715 ---- both these warnings (very common) are due to \hbox settings not being satisfied nicely. ! 3. LaTeX Warning: Specifier 'h' changed to 't'. This errors occurs when TeX is not able to correctly place a floating object at a specified location, because of which it defaulted to the top of the page. ! 4. LaTeX Warning: You have requested ..., This warning occurs in slitex when using the xypic package. 5. Missing number error: *************** *** 718,723 **** < *latex-part-compiling* ! You can compile only fragment of document. It can be useful to work on one ! sophisticated equation or one chapter. Mark fragment in Visual mode and press <F10> (or choose this option from --- 748,753 ---- < *latex-part-compiling* ! You can compile only fragment of document. This can be useful while working on ! one sophisticated equation or one chapter. Mark fragment in Visual mode and press <F10> (or choose this option from *************** *** 744,750 **** *latex-searching* ! Yap for windows, some versions of xdvi for windows and xdvi for unices provide ! the ability to do "forward searching" on the .dvi file. This means that you ! can have the DVI viewer jump to a specified location. Pressing \ls while viewing a LaTeX file will perform this function, i.e the --- 774,780 ---- *latex-searching* ! Yap for windows, some versions of xdvi for windows and xdvi for unices provide ! the ability to do "forward searching" on the .dvi file. This means that you ! can have the DVI viewer jump to a specified location. Pressing \ls while viewing a LaTeX file will perform this function, i.e the *************** *** 812,825 **** directory, then creates a sub-menu based on the specification found in that file. ! Often preamble is too long and you can put whole stuff into your own package ! and place it somewhere. Most obvious place is directory of edited file. But ! LaTeX looks for this such packages in places pointed in $TEXINPUTS environment ! variable. You can copy this variable to your texrc file in g:Tex_TEXINPUTS variable. Example: > TexLet g:Tex_TEXINPUTS = '.:~/texmf//:' ! Short explanation. '.' means looking in current directory, '~/texmf//' in ! ~/texmf directory and its all subdirectories. Last ':' means looking in normal ! TeX directories. Alas, Vim cannot (yet :) look in all subdirectories. Thus it ! find only '~/texmf/mypack.sty' and '~/texmf/sty/mypack.sty' but not '~texmf/tex/sty/mypack.sty'. --- 842,855 ---- directory, then creates a sub-menu based on the specification found in that file. ! Often preamble is too long and you can put whole stuff into your own package ! and place it somewhere. Most obvious place is directory of edited file. But ! LaTeX looks for this such packages in places pointed in $TEXINPUTS environment ! variable. You can copy this variable to your texrc file in g:Tex_TEXINPUTS variable. Example: > TexLet g:Tex_TEXINPUTS = '.:~/texmf//:' ! Short explanation. '.' means looking in current directory, '~/texmf//' in ! ~/texmf directory and its all subdirectories. Last ':' means looking in normal ! TeX directories. Alas, Vim cannot (yet :) look in all subdirectories. Thus it ! find only '~/texmf/mypack.sty' and '~/texmf/sty/mypack.sty' but not '~texmf/tex/sty/mypack.sty'. *************** *** 840,847 **** |latex-suite-maintainer|. ! Example: From the packages menu, choose the > ! Tex-Packages.Supported.SIunits option. This will insert a line of form: > \usepackage[<++>]<++>{SIunits}<++> --- 870,877 ---- |latex-suite-maintainer|. ! Example: From the packages menu, choose the > ! Tex-Packages.Supported.SIunits option. This will insert a line of form: > \usepackage[<++>]<++>{SIunits}<++> *************** *** 851,855 **** SIunits package.You can use this sub-menu to insert commands from the package, add options to the package etc. ! NOTE: Since the package file is a Vim script, you could define custom functions there, add mappings etc. --- 881,885 ---- SIunits package.You can use this sub-menu to insert commands from the package, add options to the package etc. ! NOTE: Since the package file is a Vim script, you could define custom functions there, add mappings etc. *************** *** 865,869 **** \usepackage lines and if latexSuite supports the detected packages, then sub-menus containing the package options and ! commands is created. A |latex-package-dictionary| might also be created. --- 895,899 ---- \usepackage lines and if latexSuite supports the detected packages, then sub-menus containing the package options and ! commands is created. A |latex-package-dictionary| might also be created. *************** *** 903,907 **** {env:command} Environment: creates simple environment template > \begin{command} ! x \end{command}<<>> {eno:command} Environment with option: > --- 933,937 ---- {env:command} Environment: creates simple environment template > \begin{command} ! x \end{command}<<>> {eno:command} Environment with option: > *************** *** 945,949 **** Example: > :help \kill ! gives help for the LaTeX \kill command. You can also place cursor on LaTeX \item and press <F1>. If in latexhelp.txt --- 975,979 ---- Example: > :help \kill ! gives help for the LaTeX \kill command. You can also place cursor on LaTeX \item and press <F1>. If in latexhelp.txt *************** *** 960,964 **** popular packages. When latex-suite starts up, it automatically adds this dictionary to Vim's 'dictionary' option for use with Vim's |i_CTRL-X_CTRL-K| ! command. It is also possible to load custom dictionaries automatically when packages --- 990,994 ---- popular packages. When latex-suite starts up, it automatically adds this dictionary to Vim's 'dictionary' option for use with Vim's |i_CTRL-X_CTRL-K| ! command. It is also possible to load custom dictionaries automatically when packages *************** *** 1075,1082 **** Command accepts also latexSuite mappings (|latex-macros|) without preceding S and in lowercase: > ! :TSection pa < will result in \part{}. It is possible to use full names of sections: > ! :TSection part < :TSectionAdvanced *TSectionAdvanced* --- 1105,1112 ---- Command accepts also latexSuite mappings (|latex-macros|) without preceding S and in lowercase: > ! :TSection pa < will result in \part{}. It is possible to use full names of sections: > ! :TSection part < :TSectionAdvanced *TSectionAdvanced* *************** *** 1088,1112 **** :TLook *TLook* ! Accepts one argument. Will look through .tex files in ! directory of edited file for argument. It can be regexp. You ! don't have to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. ! Note: TLook uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. :TLookBib *TLookBib* ! Accepts one argument. Will look through .bib files in ! directory of edited file for argument. It can be regexp. You ! don't have to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. ! Note: TLookBib uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. :TLookAll *TLookAll* ! Accepts one argument. Will look through all files in directory ! of edited file for argument. It can be regexp. You don't have ! to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. ! Note: TLookuses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. --- 1118,1142 ---- :TLook *TLook* ! Accepts one argument. Will look through .tex files in ! directory of edited file for argument. It can be regexp. You ! don't have to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. ! Note: TLook uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. :TLookBib *TLookBib* ! Accepts one argument. Will look through .bib files in ! directory of edited file for argument. It can be regexp. You ! don't have to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. ! Note: TLookBib uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. :TLookAll *TLookAll* ! Accepts one argument. Will look through all files in directory ! of edited file for argument. It can be regexp. You don't have ! to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. ! Note: TLookuses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. |