When used without any arguments lists all available macros defined in runtime ftplugin/latex-suite/macros/ directories and prompts you to choose one of them. With one argument |:read| this macro under cursor position. With more than one argument it will not work :) In Vim >= 6.2 works completion of names of macros (see 'wildmenu', 'wildmode' for more about command-line completion).
Splits window for editing {macro}. When used without any arguments lists all available macros defined in runtime ftplugin/latex-suite/macros/ directories and prompt you to choose one of them. When you try to edit {macro} not from local directory Latex-Suite will copy it to your local directory with suffix "-local". If local copy already exists Latex-Suite prompt for overwriting it. In Vim >= 6.2 works completion of names of macros (see 'wildmenu', 'wildmode' for more about command-line completion).
Splits window to write new macro. Directory in new buffer is locally changed to Latex-Suite/macros/.
Delets {macro} from your local ftplugin/latex-suite/macros/ directory. When used without any arguments lists all available macros defined in Latex-Suite/macros/ directory and prompt you to choose one of them. When you choose to delete {macro} which is not in your local directory Latex-Suite will refuse to delete it. In Vim >= 6.2 works completion of names of macros (see 'wildmenu', 'wildmode' for more about command-line completion)
When used without any arguments lists name of the packages for
which support is available. If you are using Vim GUI and have
Tex_Menus
set to 1, then it will list all files
found in the $VIM/ftplugin/latex-suite/packages
directory. Otherwise, Latex-Suite will list files found in the
$VIM/ftplugin/latex-suite/dictionaries
directory.
Choosing a file from the list will insert a
\usepackage[<++>]{<packname>}
line into the
buffer at the current cursor location. For Vim 6.2 and above, you
can use command-line completion to choose a package file. You can also
call TPackage
with one or more package names
separated with spaces in which case, Latex-Suite will insert
\usepackage
lines for each of them in turn.
After inserting the \usepackage
line(s), Latex-Suite will
support it (them) in various ways as described in the section Actions taken for supported
packages.
This command `reads' name of package under cursor and turns on possible support.
After issuing this command latexSuite scans the file in looking for not declared packages, removing not needed entries from Packages menu and turning off not necessary packages' dictionaries.
When used without any arguments lists all available templates from latex-suite/templates/ directory and prompts to choose one of them. With one argument :0|read| {template} file. With more than one argument it will not work :) In Vim >= 6.2 works completion of names of macros (see 'wildmenu', 'wildmode' for more about command-line completion)
Used without any arguments inserts last section type (|latex-sectioning|). Accepts arguments: n> inserts section name in <n> logical level. Levels are:
0 | part |
1 | chapter |
2 | section |
3 | subsection |
4 | subsubsection |
5 | paragraph |
6 | subparagraph |
+<n> | inserts section name <n> logical levels above the last used comand |
-<n> | inserts section name <n> logical levels below the last used comand |
+ | inserts section name one logical level below the last used command (equal to +1). |
++ | inserts section name two logical levels below the last used command (equal to +2). |
- | inserts section name one logical level over the last used command (equal to -1). |
-- | inserts section name two logical levels over the last used command (equal to -2). |
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
Accepts the same arguments as |TSection| but leads to a couple of questions (whether you want to include the section in the table of contents, whether there is a shorter name for the table of contents) and then creates a more intelligent template.
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.
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|.
TLookBib uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim.
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: TLook uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim.
No argument allowed but accepts range in all formats. Define fragment of interest with :'a,'b, :/a/,/b/, :'<,'> or :20,30. All other rules of compilation apply.