147 Commits

Author SHA1 Message Date
Gerd Wachsmuth 935a0fae8d Add comment concerning command folding
Fix vim-latex/vim-latex#189
2020-11-23 20:55:26 +01:00
Gerd Wachsmuth 46de6e2787 Look for bib-files in included files 2020-02-12 09:16:12 +01:00
Gerd Wachsmuth e0720f0148 Modelines are evil.
Fixes vim-latex/vim-latex#167
2020-02-03 14:30:11 +01:00
Huang Zonghao dcd06f8a6c Set alias to environment keyword (#148)
Aliases for environments and commands

* Fix xml for b523d67

* Add g:Tex_Env_name_aliasto macro for environment aliases

This feature enables user to set alias to the environment keywords to be
expanded, so that user could save keystrokes by setting shorter keywords

* Add g:Tex_Com_name_aliasto macro for command aliases
2018-10-03 20:15:29 +02:00
HuangZonghao b523d676be Update the docs to reflect the changes made to expand all the Capital Greek Letters 2018-02-26 16:04:03 +01:00
HuangZonghao 843d7ad5b6 Update the documents to refelct the changes of mapping `w to \omega
Changes in documentation have been made in observance of mapping
`w back to \omega and mapping `o to \omicron
2018-02-26 16:04:03 +01:00
Gerd Wachsmuth 7395a051a3 Clarify documentation of \cite completion
Fix vim-latex/vim-latex#120
2018-01-16 22:36:23 +01:00
Gerd Wachsmuth e6972ac989 Fix documentation of two options.
Fix vim-latex/vim-latex#97
2017-12-09 20:17:00 +01:00
Gerd Wachsmuth df743aaf16 Update quickstart guide 2017-12-08 23:17:25 +01:00
Gerd Wachsmuth f6e9340af3 Improve documentation 2017-12-08 23:00:21 +01:00
Gerd Wachsmuth ef64a0ad81 grepprg is not used anymore
We use :vimgrep and not :grep.
2017-12-08 20:42:25 +01:00
Gerd Wachsmuth a6cf5c4671 New possibility for customization: Tex_ItemsWithCR
If this is set, EIT will expand to
	\begin{itemize}
		\item
			<++>
	\end{itemize}
instead of
	\begin{itemize}
		\item <++>
	\end{itemize}
2017-03-06 21:15:40 +01:00
Gerd Wachsmuth 67693cef93 Remove doc/latexhelp.txt
I doubt that anybody uses this outdated LaTeX-documentation within Vim.
Close vim-latex/vim-latex#77
2017-02-03 20:36:31 +01:00
Gerd Wachsmuth bac155be20 Fix helptag collission with align plugin 2017-01-20 21:37:34 +01:00
Gerd Wachsmuth 0e832ae9f3 Add IUNMAP function. 2016-12-28 21:57:54 +01:00
zuxfoucault eb5a5d86e2 fix 'off' typo in line 752 2016-12-27 19:03:10 +01:00
zuxfoucault 173ae4af9f Fix typo in line 809 2016-12-26 23:28:06 +01:00
Gerd Wachsmuth 8df6178f40 Change behaviour and default of Tex_AdvancedMath
Alt key mapping cause issues for people inserting accented characters.
Therefore, they are disabled by default from now on.

Fix vim-latex/vim-latex#14
See vim-latex/vim-latex#70
2016-11-12 19:41:16 +01:00
Gerd Wachsmuth 817afa9592 Add comment concerning smart backspace and Korean
See vim-latex/vim-latex#67
2016-11-12 19:39:08 +01:00
Gerd Wachsmuth 4586e2210f Add gates to suppress latex-suite if needed.
This is usefull if latex-suite is installed system-wide but you do not
want to use it.
2016-10-05 10:52:14 +02:00
Gerd Wachsmuth f5bb89577c Wipe out obsolete \psfig
Cf. l2tabu
2016-10-04 10:19:37 +02:00
Gerd Wachsmuth 89f01bda45 Wipe out obsolete \centerline
Cf. l2tabu
2016-10-04 09:57:37 +02:00
Gerd Wachsmuth 1538ffc89d Wipe out references to obsolete eqnarray
See https://www.ctan.org/pkg/l2tabu
2016-10-03 22:48:42 +02:00
Gerd Wachsmuth 6b407efd5a Add more possibilities to customize environments.
With these changes, latex-suite allows more customizations for
environment macros (Using the default setting, nothing changes).

1.
let g:Tex_EnvLabelprefix_equation = "eq:"
=> labels in equations have the prefix eq:

this similarly works for:
figure,table,theorem,definition,lemma,proposition,corollary,
assumption,remark,equation,eqnarray,align,multline

2.
let g:Tex_EnvEndWithCR = 0
=>
completed environments end with:

\end{env-type}
<++>

instead of

\end{env-type}<++>

This saves one CR

3.
let g:Tex_LabelAfterContent = 0
=>
Put the label before the content of an environment, e.g.

\begin{equation}
\label{eq:<++>}
<++>
\end{equation}
<++>
2016-09-24 20:39:41 +02:00
Gerd Wachsmuth 0e1c69392e Add properly built latex-suite.txt
In the last version, the latex-suite.txt still contained a conflict
from a merge.
2016-09-24 19:19:57 +02:00
Gerd Wachsmuth a54b2de973 Fix documentation (Tex_CustomTemplateDirectory) 2016-09-24 12:21:21 +02:00
Cristóbal Tapia Camú 7f40579e95 Added support for customizing template folder 2016-09-21 22:10:49 +02:00
Gerd Wachsmuth b1872abd4f Merge pull request #51 from vim-latex/improved_folding
Improved folding feature
2016-09-21 22:04:49 +02:00
Joel Frederico 83c75e5bbd Add Python3 support
Close #28
2016-06-08 21:30:50 +02:00
Gerd Wachsmuth 73ba7f1a27 Documentation: new folding features
F6 is not (no longer?) used for folding.
2016-05-14 20:33:04 +02:00
Gerd Wachsmuth f5b24a40ee Instructions for making the doc under Ubuntu. 2016-05-01 21:54:07 +02:00
Gerd Wachsmuth 63b02f05ce New option: g:Imap_GoToSelectMode
This can be used to fix #47.
2016-04-25 22:50:59 +02:00
Miguel de Val-Borro a52fbd8d66 List name of Arch Linux packages needed to build the documentation 2015-06-24 12:18:54 -04:00
Miguel de Val-Borro f13496eebb Fix typo 2015-06-24 12:18:42 -04:00
Miguel de Val-Borro 5f9342dd2a Create flat text file from updated documentation 2015-06-24 12:10:32 -04:00
Dieter Castel 0f183c025c Updated documentation, removed README and enabled synctex for pdflatex. 2015-03-01 21:25:09 +01:00
Till Maas e18bd77618 Update docs 2014-11-15 23:40:21 +01:00
Till Maas 05f32328f7 Fix python shebangs to use python2 2014-11-15 23:28:20 +01:00
Till Maas e68cf2c969 Make python scripts more PEP8 compliant 2014-11-15 18:05:39 +01:00
Till Maas dd2e3daf1e remove remaining SVN/CVS keywords 2014-11-15 15:23:57 +01:00
Vladimir Rutsky a3f7af9c02 Fix typo: "Th bottom" 2013-01-16 15:33:52 +01:00
Till Maas f4d286787b docs: application dependent inverse search
Mention that inverse search is application dependent. Reported by Dan
Stahlke <dan@stahlke.org>.
2012-10-31 18:37:09 +01:00
Till Maas 3eaa30f61d doc/Makefile adjust db2vim location 2011-09-03 01:06:40 +02:00
Till Maas e410315981 move db2vim to doc/db2vim 2011-09-03 01:03:33 +02:00
Ted Pavlic 89c6fb50d3 Fix typo in doc: Tex_UseMakefile should be g:Tex_UseMakefile 2011-02-21 15:36:00 -05:00
Jonathan Bohren 41aaec2cad Fix g:TreatMacViewerAsUNIX typo in documentation (i.e., add Tex_).
Signed-off-by: Ted Pavlic <ted@tedpavlic.com>
2011-02-15 10:57:45 -05:00
Till Maas e2f07b8792 remove most svn/CVS keywords 2010-11-12 22:12:38 +01:00
Till Maas 7ae5399eb1 Fix <M-i> or <ALT-I> mapping and documentation
- The <M-i> mapping was not defined, because it was checked for the existence
  of the key sequence of <Plug>Tex_InsertItem, but the defined key sequence is
  <Plug>Tex_InsertItemOnThisLine
- Update documenation to mention the actual key sequence
2010-11-12 22:11:15 +01:00
Till Maas 03616e6d61 update generated latex-suite.txt 2010-11-12 22:10:52 +01:00
Till Maas b94484a7cb fix documentation upload 2010-11-12 22:10:51 +01:00