vim-latex-cvs Mailing List for Vim-Latex (Page 6)
Brought to you by:
srinathava,
tmaas
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(82) |
Dec
(124) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(104) |
Feb
(3) |
Mar
(6) |
Apr
(48) |
May
(34) |
Jun
(62) |
Jul
(33) |
Aug
(24) |
Sep
(32) |
Oct
(16) |
Nov
(36) |
Dec
(39) |
2004 |
Jan
|
Feb
(3) |
Mar
(8) |
Apr
|
May
(29) |
Jun
(13) |
Jul
(4) |
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
(6) |
Dec
(9) |
2006 |
Jan
(9) |
Feb
(2) |
Mar
(16) |
Apr
(5) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(22) |
Jun
(1) |
Jul
|
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(17) |
Sep
(3) |
Oct
(4) |
Nov
(1) |
Dec
(3) |
2010 |
Jan
(25) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(8) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(10) |
Oct
(1) |
Nov
|
Dec
(1) |
2012 |
Jan
(5) |
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(4) |
Nov
(1) |
Dec
|
2013 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(15) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
From: <tm...@us...> - 2009-01-20 14:13:25
|
Revision: 1046 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1046&view=rev Author: tmaas Date: 2009-01-20 14:13:19 +0000 (Tue, 20 Jan 2009) Log Message: ----------- - Added errorformat (efm) support for latex -file-line-error (which sanitizes error messages for Vim) - Adjust vim modeline of tex.vim Patches by Ted Pavlic Modified Paths: -------------- trunk/vimfiles/compiler/tex.vim trunk/vimfiles/ftplugin/latex-suite/texrc Modified: trunk/vimfiles/compiler/tex.vim =================================================================== --- trunk/vimfiles/compiler/tex.vim 2008-08-07 13:58:08 UTC (rev 1045) +++ trunk/vimfiles/compiler/tex.vim 2009-01-20 14:13:19 UTC (rev 1046) @@ -70,7 +70,7 @@ " ============================================================================== " Customization of 'efm': {{{ " This section contains the customization variables which the user can set. -" g:Tex_IgnoredWarnings: This variable contains a \xA1 seperated list of +" g:Tex_IgnoredWarnings: This variable contains a ¡ seperated list of " patterns which will be ignored in the TeX compiler's output. Use this " carefully, otherwise you might end up losing valuable information. if !exists('g:Tex_IgnoredWarnings') @@ -202,6 +202,7 @@ setlocal efm+=%E!\ LaTeX\ %trror:\ %m setlocal efm+=%E!\ %m + setlocal efm+=%E%f:%l:\ %m setlocal efm+=%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%# setlocal efm+=%+W%.%#\ at\ lines\ %l--%*\\d @@ -290,4 +291,4 @@ call Tex_Debug("compiler/tex.vim: sourcing this file", "comp") -" vim: fdm=marker:commentstring=\ \"\ %s +" vim:fdm=marker:ff=unix:noet:ts=4:sw=4 Modified: trunk/vimfiles/ftplugin/latex-suite/texrc =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/texrc 2008-08-07 13:58:08 UTC (rev 1045) +++ trunk/vimfiles/ftplugin/latex-suite/texrc 2009-01-20 14:13:19 UTC (rev 1046) @@ -104,7 +104,8 @@ " values, but if use some other compiler, then you will want to change this. " As CompileFlags value you'd perhaps like to use, e.g., '-src-specials', " but it is known that it can sometimes give different results in the output, -" so use it with care. +" so use it with care. The '-file-line-error' flag helps sanitize LaTeX error +" messages for processing by Vim. TexLet g:Tex_CompileRule_dvi = 'latex -interaction=nonstopmode $*' TexLet g:Tex_EscapeChars = '{}\' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-08-07 13:58:02
|
Revision: 1045 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1045&view=rev Author: tmaas Date: 2008-08-07 13:58:08 +0000 (Thu, 07 Aug 2008) Log Message: ----------- - the filetype is 'tex', not 'latex' Modified Paths: -------------- trunk/vimfiles/doc/latex-suite.txt trunk/vimfiles/doc/latex-suite.xml Modified: trunk/vimfiles/doc/latex-suite.txt =================================================================== --- trunk/vimfiles/doc/latex-suite.txt 2008-08-07 13:55:32 UTC (rev 1044) +++ trunk/vimfiles/doc/latex-suite.txt 2008-08-07 13:58:08 UTC (rev 1045) @@ -122,8 +122,8 @@ filetype indent on " OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to - " 'plaintex' instead of 'latex', which results in vim-latex not being loaded. - " The following changes the default filetype back to 'latex': + " 'plaintex' instead of 'tex', which results in vim-latex not being loaded. + " The following changes the default filetype back to 'tex': let g:tex_flavor='latex' Modified: trunk/vimfiles/doc/latex-suite.xml =================================================================== --- trunk/vimfiles/doc/latex-suite.xml 2008-08-07 13:55:32 UTC (rev 1044) +++ trunk/vimfiles/doc/latex-suite.xml 2008-08-07 13:58:08 UTC (rev 1045) @@ -81,8 +81,8 @@ filetype indent on " OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to -" 'plaintex' instead of 'latex', which results in vim-latex not being loaded. -" The following changes the default filetype back to 'latex': +" 'plaintex' instead of 'tex', which results in vim-latex not being loaded. +" The following changes the default filetype back to 'tex': let g:tex_flavor='latex' </programlisting> </para> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-08-07 13:55:23
|
Revision: 1044 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1044&view=rev Author: tmaas Date: 2008-08-07 13:55:32 +0000 (Thu, 07 Aug 2008) Log Message: ----------- - fix URL: c&p error Modified Paths: -------------- trunk/htdocs/download.inc Modified: trunk/htdocs/download.inc =================================================================== --- trunk/htdocs/download.inc 2008-08-07 13:51:20 UTC (rev 1043) +++ trunk/htdocs/download.inc 2008-08-07 13:55:32 UTC (rev 1044) @@ -67,7 +67,7 @@ <h4>Step 2 of 4: Set a few things in .vimrc</h4> The recommended settings for vim-latex in your .vimrc file are now only described in -the <a href="/documentation/latex-suite/recommended-settings.html/documentation/latex-suite/recommended-settings.html">vim-latex manual</a>. +the <a href="/documentation/latex-suite/recommended-settings.html">vim-latex manual</a>. <h4>Step 3 of 4: Install the help files</h4> To install the included latex-suit.txt and latexhelp.txt files as vim help This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-08-07 13:51:11
|
Revision: 1043 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1043&view=rev Author: tmaas Date: 2008-08-07 13:51:20 +0000 (Thu, 07 Aug 2008) Log Message: ----------- fix html syntax Modified Paths: -------------- trunk/htdocs/faq.inc Modified: trunk/htdocs/faq.inc =================================================================== --- trunk/htdocs/faq.inc 2008-08-07 13:49:58 UTC (rev 1042) +++ trunk/htdocs/faq.inc 2008-08-07 13:51:20 UTC (rev 1043) @@ -296,8 +296,8 @@ </div> <blockquote> <div class=ans> -If you look at the filetype of your opened file (with <pre>:se ft</pre>, you will notice, that it is not set to 'tex', but probably to 'plaintex'. -To change this, you need to add <pre>let g:tex_flavor='latex'</pre> to your .vimrc file. +If you look at the filetype of your opened file (with <tt>:se ft</tt>), you will notice, that it is not set to 'tex', but probably to 'plaintex'. +To change this, you need to add <tt>let g:tex_flavor='latex'</tt> to your .vimrc file. </div> </blockquote> <!-- A sample Q & A This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-08-07 13:49:50
|
Revision: 1042 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1042&view=rev Author: tmaas Date: 2008-08-07 13:49:58 +0000 (Thu, 07 Aug 2008) Log Message: ----------- - mention let g:tex_flavor='latex' Modified Paths: -------------- trunk/vimfiles/doc/latex-suite.txt trunk/vimfiles/doc/latex-suite.xml Modified: trunk/vimfiles/doc/latex-suite.txt =================================================================== --- trunk/vimfiles/doc/latex-suite.txt 2008-08-07 13:45:14 UTC (rev 1041) +++ trunk/vimfiles/doc/latex-suite.txt 2008-08-07 13:49:58 UTC (rev 1042) @@ -121,6 +121,11 @@ " OPTIONAL: This enables automatic indentation as you type. filetype indent on + " OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to + " 'plaintex' instead of 'latex', which results in vim-latex not being loaded. + " The following changes the default filetype back to 'latex': + let g:tex_flavor='latex' + In addition, the following settings could go in your ~/.vim/ftplugin/tex.vim Modified: trunk/vimfiles/doc/latex-suite.xml =================================================================== --- trunk/vimfiles/doc/latex-suite.xml 2008-08-07 13:45:14 UTC (rev 1041) +++ trunk/vimfiles/doc/latex-suite.xml 2008-08-07 13:49:58 UTC (rev 1042) @@ -79,6 +79,11 @@ " OPTIONAL: This enables automatic indentation as you type. filetype indent on + +" OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to +" 'plaintex' instead of 'latex', which results in vim-latex not being loaded. +" The following changes the default filetype back to 'latex': +let g:tex_flavor='latex' </programlisting> </para> <para> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-08-07 13:45:05
|
Revision: 1041 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1041&view=rev Author: tmaas Date: 2008-08-07 13:45:14 +0000 (Thu, 07 Aug 2008) Log Message: ----------- - Add FAQ regarding let g:tex_flavor='latex' - Maintain only one place with recommended settings in .vimrc Modified Paths: -------------- trunk/htdocs/download.inc trunk/htdocs/faq.inc Modified: trunk/htdocs/download.inc =================================================================== --- trunk/htdocs/download.inc 2008-08-05 19:02:02 UTC (rev 1040) +++ trunk/htdocs/download.inc 2008-08-07 13:45:14 UTC (rev 1041) @@ -66,24 +66,9 @@ do not over-write any of your files.</p> <h4>Step 2 of 4: Set a few things in .vimrc</h4> -Make sure you have the following setting in your .vimrc -<pre> -" REQUIRED. This makes vim invoke latex-suite when you open a tex file. -filetype plugin on +The recommended settings for vim-latex in your .vimrc file are now only described in +the <a href="/documentation/latex-suite/recommended-settings.html/documentation/latex-suite/recommended-settings.html">vim-latex manual</a>. -" IMPORTANT: win32 users will need to have 'shellslash' set so that latex -" can be called correctly. -set shellslash - -" IMPORTANT: grep will sometimes skip displaying the file name if you -" search in a singe file. This will confuse latex-suite. Set your grep -" program to alway generate a file-name. -set grepprg=grep\ -nH\ $* - -" OPTIONAL: This enables automatic indentation as you type. -filetype indent on -</pre> - <h4>Step 3 of 4: Install the help files</h4> To install the included latex-suit.txt and latexhelp.txt files as vim help files, start vim and do the following: Modified: trunk/htdocs/faq.inc =================================================================== --- trunk/htdocs/faq.inc 2008-08-05 19:02:02 UTC (rev 1040) +++ trunk/htdocs/faq.inc 2008-08-07 13:45:14 UTC (rev 1041) @@ -23,6 +23,9 @@ a lot. But latex-suite always converts it into a <tt>\subsection{}<++></tt>. How do I get around this? (OR How do I disable a mapping created by Latex-suite?)</a></li> + <li><a class=question href="#faq-not-loaded-vim7"> + Why is vim-latex is no longer loaded when I open an empty .tex file after I upgraded to Vim 7? + </a> </ul> <h2>Answers</h2> @@ -287,6 +290,16 @@ </div> </blockquote> +<a name="faq-not-loaded-vim7"> +<div class=qa> +Q: Why is vim-latex is no longer loaded when I open an empty .tex file after I upgraded to Vim 7? +</div> +<blockquote> +<div class=ans> +If you look at the filetype of your opened file (with <pre>:se ft</pre>, you will notice, that it is not set to 'tex', but probably to 'plaintex'. +To change this, you need to add <pre>let g:tex_flavor='latex'</pre> to your .vimrc file. +</div> +</blockquote> <!-- A sample Q & A <a name="faq-#"> <div class=qa> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-08-05 19:01:54
|
Revision: 1040 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1040&view=rev Author: tmaas Date: 2008-08-05 19:02:02 +0000 (Tue, 05 Aug 2008) Log Message: ----------- Documentation about the directory structure Added Paths: ----------- trunk/README.txt Added: trunk/README.txt =================================================================== --- trunk/README.txt (rev 0) +++ trunk/README.txt 2008-08-05 19:02:02 UTC (rev 1040) @@ -0,0 +1,10 @@ +Directory Structure +=================== + +* db2vim - docbook to vimhelpfile converter +* htdocs - some parts of the vim-latex website +* TODO - TODO files (currently not really used) +* vimfiles - the actual code of vim-latex, you can use this as your ~/.vim + folder ;-) +* vim-latex - previous location of some documentation, will be merged into + vimfiles/doc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-06-07 14:09:47
|
Revision: 1039 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1039&view=rev Author: tmaas Date: 2008-06-07 07:09:51 -0700 (Sat, 07 Jun 2008) Log Message: ----------- - Enhance forward/inverse searching, patch by Ted Pavlic http://phaseportrait.blogspot.com/2007/07/vim-latex-modification-forward.html http://links.tedpavlic.com/patch/VIM-LaTeX-osx-inverse-search-compiler.patch http://sourceforge.net/mailarchive/message.php?msg_name=48418CD8.6060907%40tedpavlic.com - Update documentation to mention several viewers that support forward searching - Mention empty view rule meaning for Windows/Mac users: use system default viewer Modified Paths: -------------- trunk/vimfiles/doc/latex-suite.txt trunk/vimfiles/doc/latex-suite.xml trunk/vimfiles/ftplugin/latex-suite/compiler.vim trunk/vimfiles/ftplugin/latex-suite/texrc Modified: trunk/vimfiles/doc/latex-suite.txt =================================================================== --- trunk/vimfiles/doc/latex-suite.txt 2008-05-31 17:13:01 UTC (rev 1038) +++ trunk/vimfiles/doc/latex-suite.txt 2008-06-07 14:09:51 UTC (rev 1039) @@ -58,7 +58,7 @@ |ls_6_5| Compiling parts of a file |ls_7| Latex Viewing and Searching |ls_7_1| Setting Viewing rules - |ls_7_2| Forward Searching DVI documents + |ls_7_2| Forward Searching documents |ls_7_3| Inverse Searching |ls_8| Latex Folding |ls_8_1| Default Folding Scheme in Latex-Suite @@ -1755,7 +1755,7 @@ *latex-viewing* |ls_7_1| Setting Viewing rules -|ls_7_2| Forward Searching DVI documents +|ls_7_2| Forward Searching documents |ls_7_3| Inverse Searching @@ -1781,22 +1781,46 @@ you are attempting to view. See the link above for how to set this according to your system. +NOTE: On Windows and OS/X, you can leave the view rule empty to open the + document with the default viewer on your system. On Linux/UNIX systems, + you can use the xdg-open command to open the document with the default + viewer. + + In addition to viewing the files, Latex-Suite also supports forward and inverse -searching for certain common tools for viewing DVI documents. At the moment, -there is built-in support for YAP on windows (which ships with MikTeX), and the -popular xdvi on *nix platforms. See the next few sections for details on forward -and inverse searching. +searching for certain common tools for viewing documents. See the next few +sections for details on forward and inverse searching, including an overview of +viewers. -------------------------------------------------------------------------------- -Forward Searching DVI documents *ls_7_2* *ls_a_cg* +Forward Searching documents *ls_7_2* *ls_a_cg* *forward-searching* -Forward searching refers to making a DVI viewer display a given document at a -given location from within Vim. At present, this functionality is supported for -YAP on windows and xdvi on *nix machines. Pressing \ls from within Vim should -make the DVI viewer display the portion of the document where your cursor is -placed. +Forward searching refers to making a viewer display a given document at a given +location from within Vim. At present, these viewers are known to support forward +searching, but viewers that are not listed here may work, too:Viewer OS Supported documents Comment~ +Skim |ls_u_5| Apple / OS X Tiger PDF Supports also + inverse searching +PDFView |ls_u_6| Apple / OS X PDF No longer in + development, + supports also + inverse searching +TeXniscope |ls_u_7| Apple PDF, DVI +YAP |ls_u_8| Windows DVI, PS ships with MikTex +Sumatra PDF |ls_u_9| Windows PDF +kdvi |ls_u_10| Linux/UNIX DVI +okular |ls_u_11| Linux/UNIX DVI, PDF, PS and Included in KDE 4 + many more +xdvi |ls_u_12| Linux/UNIX DVI +xdvik |ls_u_13| Linux/UNIX DVI +Pressing \ls from within Vim should make the viewer display the portion of the +document where your cursor is placed.NOTE: OS/X users need to set the g:TreatMacViewerAsUNIX flag to 1 and provide a + UNIX-like viewrule, that expects as arguments the document, the linenumber + and the sourcefile in this order. + + + *enabling-searching* *ls_a_ed* NOTE: Enabling Forward and Inverse Searching -------------------------------------- @@ -1806,14 +1830,17 @@ Latex-Suite does not supply this argument to the compiler. See the section on to find out how this option can be set. + For pdf viewers you need to use the pdfsync |ls_u_14| package in your + LaTeX document. + -------------------------------------------------------------------------------- Inverse Searching *ls_7_3* *ls_a_ch* *inverse-searching* -Inverse searching refers to the DVI viewer telling Vim to display the LaTeX -source file at a given location when you double-click in the DVI viewer window. +Inverse searching refers to the viewer telling Vim to display the LaTeX source +file at a given location when you double-click in the viewer window. You will need to enable searching [|ls_a_ed|] in order to use this functionality. @@ -3392,9 +3419,19 @@ URLs used in this file *ls_u_1* : http://vim-latex.sourceforge.net +*ls_u_10* : http://developer.kde.org/~kdvi/ +*ls_u_11* : http://okular.kde.org/ +*ls_u_12* : http://math.berkeley.edu/~vojta/xdvi.html +*ls_u_13* : http://xdvi.sourceforge.net/ +*ls_u_14* : http://itexmac.sourceforge.net/pdfsync.html *ls_u_2* : http://vim-latex.sourceforge.net/index.php?subject=download *ls_u_3* : http://www.cygwin.com *ls_u_4* : http://www.google.com/search?q=windows%20gnu%20grep +*ls_u_5* : http://skim-app.sourceforge.net/ +*ls_u_6* : http://pdfview.sourceforge.net/ +*ls_u_7* : http://www2.ing.unipi.it/~d9615/homepage/texniscope.html +*ls_u_8* : http://www.miktex.org/ +*ls_u_9* : http://blog.kowalczyk.info/software/sumatrapdf/ ================================================================================ About this file Modified: trunk/vimfiles/doc/latex-suite.xml =================================================================== --- trunk/vimfiles/doc/latex-suite.xml 2008-05-31 17:13:01 UTC (rev 1038) +++ trunk/vimfiles/doc/latex-suite.xml 2008-06-07 14:09:51 UTC (rev 1039) @@ -2180,23 +2180,106 @@ attempting to view. See the link above for how to set this according to your system. </para> + <note> + <para> + On Windows and OS/X, you can leave the view rule empty to open the document + with the default viewer on your system. On Linux/UNIX systems, you can use + the <literal>xdg-open</literal> command to open the document with the default + viewer. + </para> + </note> <para> In addition to viewing the files, &ls; also supports forward and inverse - searching for certain common tools for viewing DVI documents. At the - moment, there is built-in support for YAP on windows (which ships with - MikTeX), and the popular <literal>xdvi</literal> on *nix platforms. See - the next few sections for details on forward and inverse searching. + searching for certain common tools for viewing documents. + See the next few sections for details on forward and inverse searching, + including an overview of viewers. </para> </section> <section id="forward-searching"> - <title>Forward Searching DVI documents</title> + <title>Forward Searching documents</title> <para> - Forward searching refers to making a DVI viewer display a given document - at a given location from within &vim;. At present, this functionality is - supported for <literal>YAP</literal> on windows and - <literal>xdvi</literal> on *nix machines. Pressing - <literal>\ls</literal> from within &vim; should make the DVI viewer - display the portion of the document where your cursor is placed. + Forward searching refers to making a viewer display a given document at + a given location from within &vim;. At present, these viewers are known to support + forward searching, but viewers that are not listed here may work, too: + <informaltable frame="all"> + <tgroup cols="3"> + <thead> + <row> + <entry>Viewer</entry> + <entry>OS</entry> + <entry>Supported documents</entry> + <entry>Comment</entry> + </row> + </thead> + <tbody> + <row> + <entry><ulink url="http://skim-app.sourceforge.net/">Skim</ulink></entry> + <entry>Apple / OS X Tiger</entry> + <entry>PDF</entry> + <entry>Supports also inverse searching</entry> + </row> + <row> + <entry><ulink url="http://pdfview.sourceforge.net/">PDFView</ulink></entry> + <entry>Apple / OS X</entry> + <entry>PDF</entry> + <entry>No longer in development, supports also inverse searching</entry> + </row> + <row> + <entry><ulink url="http://www2.ing.unipi.it/~d9615/homepage/texniscope.html">TeXniscope</ulink></entry> + <entry>Apple</entry> + <entry>PDF, DVI</entry> + <entry></entry> + </row> + <row> + <entry><ulink url="http://www.miktex.org/">YAP</ulink></entry> + <entry>Windows</entry> + <entry>DVI, PS</entry> + <entry>ships with MikTex</entry> + </row> + <row> + <entry><ulink url="http://blog.kowalczyk.info/software/sumatrapdf/">Sumatra PDF</ulink></entry> + <entry>Windows</entry> + <entry>PDF</entry> + <entry></entry> + </row> + <row> + <entry><ulink url="http://developer.kde.org/~kdvi/">kdvi</ulink></entry> + <entry>Linux/UNIX</entry> + <entry>DVI</entry> + <entry></entry> + </row> + <row> + <entry><ulink url="http://okular.kde.org/">okular</ulink></entry> + <entry>Linux/UNIX</entry> + <entry>DVI, PDF, PS and many more</entry> + <entry>Included in KDE 4</entry> + </row> + <row> + <entry><ulink url="http://math.berkeley.edu/~vojta/xdvi.html">xdvi</ulink></entry> + <entry>Linux/UNIX</entry> + <entry>DVI</entry> + <entry></entry> + </row> + <row> + <entry><ulink url="http://xdvi.sourceforge.net/">xdvik</ulink></entry> + <entry>Linux/UNIX</entry> + <entry>DVI</entry> + <entry></entry> + </row> + </tbody> + </tgroup> + </informaltable> + + Pressing <literal>\ls</literal> from within &vim; + should make the viewer display the portion of the document where your + cursor is placed. + <note> + <para> + OS/X users need to set the <literal>g:TreatMacViewerAsUNIX</literal> flag + to <literal>1</literal> and provide a UNIX-like viewrule, that expects as + arguments the document, the linenumber and the sourcefile in this order. + </para> + </note> </para> <anchor id="enabling-searching" /> <note> @@ -2210,14 +2293,17 @@ <literal><link linkend="Tex_CompileRule_format">g:Tex_CompileRule_dvi</link></literal> to find out how this option can be set. + + For pdf viewers you need to use the <ulink url="http://itexmac.sourceforge.net/pdfsync.html">pdfsync</ulink> + package in your LaTeX document. </para> </note> </section> <section id="inverse-searching"> <title>Inverse Searching</title> <para> - Inverse searching refers to the DVI viewer telling &vim; to display the - &latex; source file at a given location when you double-click in the DVI + Inverse searching refers to the viewer telling &vim; to display the + &latex; source file at a given location when you double-click in the viewer window. </para> <para> Modified: trunk/vimfiles/ftplugin/latex-suite/compiler.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/compiler.vim 2008-05-31 17:13:01 UTC (rev 1038) +++ trunk/vimfiles/ftplugin/latex-suite/compiler.vim 2008-06-07 14:09:51 UTC (rev 1039) @@ -251,7 +251,8 @@ " that this particular vim and yap are connected. let execString = 'start '.s:viewer.' "$*.'.s:target.'"' - elseif has('macunix') + elseif (has('macunix') && Tex_GetVarValue('Tex_TreatMacViewerAsUNIX') != 1) + if strlen(s:viewer) let s:viewer = '-a '.s:viewer endif @@ -270,24 +271,29 @@ \ (s:viewer == "xdvi" || s:viewer == "xdvik") let execString = s:viewer.' -editor "gvim --servername '.v:servername. - \ ' --remote-silent +\%l \%f" $*.dvi &' + \ ' --remote-silent +\%l \%f" $*.dvi' elseif Tex_GetVarValue('Tex_UseEditorSettingInDVIViewer') == 1 && \ s:viewer == "kdvi" - let execString = 'kdvi --unique $*.dvi &' + let execString = 'kdvi --unique $*.dvi' else - let execString = s:viewer.' $*.dvi &' + let execString = s:viewer.' $*.dvi' endif else - let execString = s:viewer.' $*.'.s:target.' &' + let execString = s:viewer.' $*.'.s:target endif + + if( Tex_GetVarValue('Tex_ExecuteUNIXViewerInForeground') != 1 ) + let execString = execString.' &' + endif + end let execString = substitute(execString, '\V$*', mainfname, 'g') @@ -304,7 +310,7 @@ " }}} " Tex_ForwardSearchLaTeX: searches for current location in dvi file. {{{ -" Description: if the DVI viewr is compatible, then take the viewer to that +" Description: if the DVI viewer is compatible, then take the viewer to that " position in the dvi file. see docs for Tex_RunLaTeX() to set a " master file if this is an \input'ed file. " Tip: With YAP on Windows, it is possible to do forward and inverse searches @@ -316,53 +322,91 @@ " will work. function! Tex_ForwardSearchLaTeX() if &ft != 'tex' - echo "calling Tex_ViewLaTeX from a non-tex file" + echo "calling Tex_ForwardSeachLaTeX from a non-tex file" return end - " only know how to do forward search for yap on windows and xdvik (and - " some newer versions of xdvi) on unices. Therefore forward searching will - " automatically open the DVI viewer irrespective of what the user chose as - " the default view format. - if Tex_GetVarValue('Tex_ViewRule_dvi') == '' + if Tex_GetVarValue('Tex_ViewRule_'.s:target) == '' return endif - let viewer = Tex_GetVarValue('Tex_ViewRule_dvi') + let viewer = Tex_GetVarValue('Tex_ViewRule_'.s:target) let curd = getcwd() let mainfname = Tex_GetMainFileName(':t') let mainfnameRoot = fnamemodify(Tex_GetMainFileName(), ':t:r') + let mainfnameFull = Tex_GetMainFileName(':p:r') " cd to the location of the file to avoid problems with directory name " containing spaces. call Tex_CD(Tex_GetMainFileName(':p:h')) " inverse search tips taken from Dimitri Antoniou's tip and Benji Fisher's " tips on vim.sf.net (vim.sf.net tip #225) - if has('win32') + if (has('win32') && (viewer == "yap" || viewer == "YAP" || viewer == "Yap")) let execString = 'silent! !start '. viewer.' -s '.line('.').expand('%').' '.mainfnameRoot + + elseif (has('macunix') && (viewer == "Skim" || viewer == "PDFView" || viewer == "TeXniscope")) + " We're on a Mac using a traditional Mac viewer + + if viewer == "Skim" + + let execString = 'silent! !/Applications/Skim.app/Contents/SharedSupport/displayline '. + \ line('.').' "'.mainfnameFull.'.'.s:target.'" "'.expand("%:p").'"' + + elseif viewer == "PDFView" + + let execString = 'silent! !/Applications/PDFView.app/Contents/MacOS/gotoline.sh '. + \ line('.').' "'.mainfnameFull.'.'.s:target.'" "'.expand("%:p").'"' + + elseif viewer == "TeXniscope" + + let execString = 'silent! !/Applications/TeXniscope.app/Contents/Resources/forward-search.sh '. + \ line('.').' "'.expand("%:p").'" "'.mainfnameFull.'.'.s:target.'"' + + endif + else - if Tex_GetVarValue('Tex_UseEditorSettingInDVIViewer') == 1 && - \ exists('v:servername') && - \ (viewer == "xdvi" || viewer == "xdvik") + " We're either UNIX or Mac and using a UNIX-type viewer - let execString = 'silent! !'.viewer.' -name xdvi -sourceposition '.line('.').expand("%"). - \ ' -editor "gvim --servername '.v:servername.' --remote-silent +\%l \%f" '. - \ mainfnameRoot.'.dvi &' + " Check for the special DVI viewers first + if (viewer == "xdvi" || viewer == "xdvik" || viewer == "kdvi" ) - elseif Tex_GetVarValue('Tex_UseEditorSettingInDVIViewer') == 1 && viewer == "kdvi" + if Tex_GetVarValue('Tex_UseEditorSettingInDVIViewer') == 1 && + \ exists('v:servername') && + \ (viewer == "xdvi" || viewer == "xdvik") - let execString = 'silent! !kdvi --unique file:'.mainfnameRoot.'.dvi\#src:'.line('.').expand("%").' &' + let execString = 'silent! !'.viewer.' -name xdvi -sourceposition '.line('.').expand("%"). + \ ' -editor "gvim --servername '.v:servername.' --remote-silent +\%l \%f" '. + \ mainfnameRoot.'.dvi' + elseif viewer == "kdvi" + + let execString = 'silent! !kdvi --unique file:'.mainfnameRoot.'.dvi\#src:'.line('.').expand("%") + + elseif (viewer == "xdvi" || viewer = "xdvik" ) + + let execString = 'silent! !'.viewer.' -name xdvi -sourceposition '.line('.').expand("%").' '.mainfnameRoot.'.dvi' + + endif + else + " We must be using a generic UNIX viewer + " syntax is: viewer TARGET_FILE LINE_NUMBER SOURCE_FILE - let execString = 'silent! !'.viewer.' -name xdvi -sourceposition '.line('.').expand("%").' '.mainfnameRoot.'.dvi &' + let execString = 'silent! !'.viewer.' "'.mainfnameRoot.'.'.s:target.'" '.line('.').' "'.expand('%').'"' endif - end + " See if we should add &. On Mac (at least in MacVim), it seems + " like this should NOT be added... + if( Tex_GetVarValue('Tex_ExecuteUNIXViewerInForeground') != 1 ) + let execString = execString.' &' + endif + + endif + call Tex_Debug("Tex_ForwardSearchLaTeX: execString = ".execString, "comp") execute execString if !has('gui_running') Modified: trunk/vimfiles/ftplugin/latex-suite/texrc =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/texrc 2008-05-31 17:13:01 UTC (rev 1038) +++ trunk/vimfiles/ftplugin/latex-suite/texrc 2008-06-07 14:09:51 UTC (rev 1039) @@ -146,6 +146,9 @@ TexLet g:Tex_ViewRule_pdf = '' " TexLet g:Tex_ViewRule_pdf = 'Acrobat\ Reader\ 5.1' TexLet g:Tex_ViewRule_dvi = '' + " Set this to 1 to disable opening a viewer with 'open -a' + " Note: If you do this, you need to specify viewers above + " TexLet g:Tex_TreatMacViewerAsUNIX = 1 else TexLet g:Tex_ViewRule_ps = 'ghostview' TexLet g:Tex_ViewRule_pdf = 'xpdf' @@ -155,6 +158,9 @@ " #225) TexLet g:Tex_UseEditorSettingInDVIViewer = 0 endif +" For unix systems or macunix systens with enabled Tex_TreatMacViewerAsUNIX: +" Set this to 1 if you do not want to execute the viewer in the background +" TexLet g:Tex_ExecuteUNIXViewerInForeground = 1 " Tex_ViewRuleComplete_{format} " This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-31 17:12:52
|
Revision: 1038 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1038&view=rev Author: tmaas Date: 2008-05-31 10:13:01 -0700 (Sat, 31 May 2008) Log Message: ----------- - typofix Modified Paths: -------------- trunk/vimfiles/doc/Makefile Modified: trunk/vimfiles/doc/Makefile =================================================================== --- trunk/vimfiles/doc/Makefile 2008-05-31 16:42:06 UTC (rev 1037) +++ trunk/vimfiles/doc/Makefile 2008-05-31 17:13:01 UTC (rev 1038) @@ -9,7 +9,7 @@ db2vim=../../db2vim/db2vim # Use for debugging: -#xsltproc=trace -e trace=file xsltproc --nonet --load-trace +#xsltproc=strace -e trace=file xsltproc --nonet --load-trace # export XML_DEBUG_CATALOG = 1 # Specify local catalog to not use system installed dtd/xsl files This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-31 16:41:58
|
Revision: 1037 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1037&view=rev Author: tmaas Date: 2008-05-31 09:42:06 -0700 (Sat, 31 May 2008) Log Message: ----------- - typofix Modified Paths: -------------- trunk/vimfiles/doc/Makefile Modified: trunk/vimfiles/doc/Makefile =================================================================== --- trunk/vimfiles/doc/Makefile 2008-05-31 16:10:30 UTC (rev 1036) +++ trunk/vimfiles/doc/Makefile 2008-05-31 16:42:06 UTC (rev 1037) @@ -6,7 +6,7 @@ xsltproc=xsltproc -dbv2im=../../db2vim/db2vim +db2vim=../../db2vim/db2vim # Use for debugging: #xsltproc=trace -e trace=file xsltproc --nonet --load-trace This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-31 16:10:33
|
Revision: 1036 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1036&view=rev Author: tmaas Date: 2008-05-31 09:10:30 -0700 (Sat, 31 May 2008) Log Message: ----------- - Add new Makefile to create documentation with xsltproc - Update xsl imports to use the public http uris for the docbook xsl files. This makes it use the system xsl files when they are installed or downloads them otherwise when using xsltproc. This breaks currently breaks the creation of documentation with saxon, because it does not use system xsl files by default, http://sagehill.net/docbookxsl/UseCatalog.html explains how to probably fix this, i.e. make it use a catalog file - Add a catalog file to easily use a locally copy of the docbook xsl files Modified Paths: -------------- trunk/vimfiles/doc/latex-suite-chunk.xsl trunk/vimfiles/doc/latex-suite.xsl Added Paths: ----------- trunk/vimfiles/doc/Makefile trunk/vimfiles/doc/catalog.xml Added: trunk/vimfiles/doc/Makefile =================================================================== --- trunk/vimfiles/doc/Makefile (rev 0) +++ trunk/vimfiles/doc/Makefile 2008-05-31 16:10:30 UTC (rev 1036) @@ -0,0 +1,60 @@ +projects = latex-suite latex-suite-quickstart +htmlfiles = $(addsuffix .html, $(projects)) +txtfiles = $(addsuffix .txt, $(projects)) +cssfiles = $(addsuffix .css, $(projects)) +all = $(projects) $(htmlfiles) $(cssfiles) $(txtfiles) + + +xsltproc=xsltproc +dbv2im=../../db2vim/db2vim + +# Use for debugging: +#xsltproc=trace -e trace=file xsltproc --nonet --load-trace +# export XML_DEBUG_CATALOG = 1 + +# Specify local catalog to not use system installed dtd/xsl files +# export XML_CATALOG_FILES=catalog.xml + +# User configuration of this Makefile goes into Makefile.local +# E.g. to use a catalog file installed by the user. +-include Makefile.local + +# Default Target is to create all documentation files +all: $(all) + +# create multi page html (chunk xhtml) +$(projects): %: %.xml latex-suite-chunk.xsl latex-suite-common.xsl + $(xsltproc) -o $@/ latex-suite-chunk.xsl $< + +# create single html files +$(htmlfiles): %.html: %.xml latex-suite.xsl latex-suite-common.xsl + $(xsltproc) -o $@ latex-suite.xsl $< + +# create vim flat files +latex-suite.txt: %.txt: %.xml + $(db2vim) --prefix=ls_ $< > $@ + +latex-suite-quickstart.txt: %.txt: %.xml + $(db2vim) --prefix=lq_ $< > $@ + +# validate xml +validate: + for file in *.xml; do \ + xmllint --valid --noout $$file; \ + done + +clean: + rm -f $(htmlfiles) + rm -rf $(projects) + +# $(txtfiles) are currently in revision control, therefore they are not +# removed in the clean target +mr-proper: clean + rm -f $(txtfiles) + +upload: $(all) + rsync --delete -lrtvz $(all) shell.sourceforge.net:/home/groups/v/vi/vim-latex/htdocs/documentation/ +# Make sure that directories are group writeable, depends on bash beeing the remote shell + ssh shell.sourceforge.net chmod g+w "/home/groups/v/vi/vim-latex/htdocs/documentation/latex-suite{,-quickstart}" + +# vim:nowrap Added: trunk/vimfiles/doc/catalog.xml =================================================================== --- trunk/vimfiles/doc/catalog.xml (rev 0) +++ trunk/vimfiles/doc/catalog.xml 2008-05-31 16:10:30 UTC (rev 1036) @@ -0,0 +1,12 @@ +<?xml version="1.0"?> +<!DOCTYPE catalog + PUBLIC "-//OASIS/DTD Entity Resolution XML Catalog V1.0//EN" + "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> +<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> + <rewriteSystem + systemIdStartString="http://docbook.sourceforge.net/release/xsl/current" + rewritePrefix="docbook-xsl/"/> + <rewriteURI + uriStartString="http://docbook.sourceforge.net/release/xsl/current/" + rewritePrefix="docbook-xsl/" /> +</catalog> Modified: trunk/vimfiles/doc/latex-suite-chunk.xsl =================================================================== --- trunk/vimfiles/doc/latex-suite-chunk.xsl 2008-05-31 16:04:12 UTC (rev 1035) +++ trunk/vimfiles/doc/latex-suite-chunk.xsl 2008-05-31 16:10:30 UTC (rev 1036) @@ -6,7 +6,7 @@ <!-- $Id$ --> - <xsl:import href="docbook-xsl/xhtml/chunk.xsl"/> + <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/> <!-- import common customizations --> <xsl:import href="latex-suite-common.xsl"/> Modified: trunk/vimfiles/doc/latex-suite.xsl =================================================================== --- trunk/vimfiles/doc/latex-suite.xsl 2008-05-31 16:04:12 UTC (rev 1035) +++ trunk/vimfiles/doc/latex-suite.xsl 2008-05-31 16:10:30 UTC (rev 1036) @@ -6,7 +6,7 @@ <!-- $Id$ --> - <xsl:import href="docbook-xsl/xhtml/docbook.xsl"/> + <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/> <!-- import common customizations --> <xsl:import href="latex-suite-common.xsl"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-31 16:04:04
|
Revision: 1035 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1035&view=rev Author: tmaas Date: 2008-05-31 09:04:12 -0700 (Sat, 31 May 2008) Log Message: ----------- - recreated from xml Modified Paths: -------------- trunk/vimfiles/doc/latex-suite.txt Modified: trunk/vimfiles/doc/latex-suite.txt =================================================================== --- trunk/vimfiles/doc/latex-suite.txt 2008-05-31 16:02:34 UTC (rev 1034) +++ trunk/vimfiles/doc/latex-suite.txt 2008-05-31 16:04:12 UTC (rev 1035) @@ -1434,8 +1434,8 @@ NOTE: <F9> will also work in a similar way after any command which contains the word cite in it. For example, pressing <F9> will also work with \citenum etc. - - + + The following logic is applied to find out which bibliographic entries are included in the completion. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-31 16:02:29
|
Revision: 1034 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1034&view=rev Author: tmaas Date: 2008-05-31 09:02:34 -0700 (Sat, 31 May 2008) Log Message: ----------- - Recreated quickstart guide from XMl Modified Paths: -------------- trunk/vimfiles/doc/latex-suite-quickstart.txt Modified: trunk/vimfiles/doc/latex-suite-quickstart.txt =================================================================== --- trunk/vimfiles/doc/latex-suite-quickstart.txt 2008-05-31 12:17:56 UTC (rev 1033) +++ trunk/vimfiles/doc/latex-suite-quickstart.txt 2008-05-31 16:02:34 UTC (rev 1034) @@ -109,7 +109,7 @@ preamble, type the single word amsmath and then press <F5> in normal mode. The line will change to > \usepackage[]{amsmath}<++> -with the cursor positioned conviniently between the []'s. For now, do not worry +with the cursor positioned conveniently between the []'s. For now, do not worry about the trailing <++> at the end of this line. Assume we want to provide the sumlimits options to amsmath. You can either type in this option manually, or choose from a menu of package options which Latex-Suite automatically creates @@ -120,7 +120,7 @@ with the cursor before ]. Press <C-j> in insert mode. You will see the cursor -jump to the end of the package line and the trailing <++> will dissapear. What +jump to the end of the package line and the trailing <++> will disappear. What just happened?! You had your first taste of _Placeholders_. Read more about them (later) here |lq_u_3|. In short, pressing <C-j> in insert mode takes you to the next <++> in the text. @@ -246,7 +246,7 @@ 16 true: 17 +-- 4 lines: eqnarray (eqn:simple) : \label{eqn:simple}--------------------- 21 This is my contribution to mathematics. - 22 This is a reference to (\ref{}<++>)<++> + 22 This is a reference to (\ref{}<++>)<++> 23 \end{document} ~ ~ @@ -284,7 +284,7 @@ This is a reference to (\ref{eqn:euler}) <and the bottom windows close automatically. -The <F9> key also works for inserting \cite commands to reference bibliographich +The <F9> key also works for inserting \cite commands to reference bibliographic entries, inserting file names for the \inputgraphics command and just plain searching for words. Click here |lq_u_5| for more information. @@ -384,7 +384,7 @@ Most DVI viewers also support inverse searching, whereby you can make the DVI viewer ask vim to display the tex source corresponding to the DVI file being -shown. This is extremeley helpful while proofreading large documents. +shown. This is extremely helpful while proofreading large documents. Simply double-click anywhere in the viewer window. If the viewer supports it, then it will attempt to open an editor window at the location corresponding to This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-31 11:47:18
|
Revision: 1032 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1032&view=rev Author: tmaas Date: 2008-05-31 04:47:25 -0700 (Sat, 31 May 2008) Log Message: ----------- - The testing directory is no longer used Removed Paths: ------------- trunk/testing/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-29 22:16:37
|
Revision: 1031 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1031&view=rev Author: tmaas Date: 2008-05-29 15:16:45 -0700 (Thu, 29 May 2008) Log Message: ----------- - no space before the colon in the fold text after label text Modified Paths: -------------- trunk/vimfiles/ftplugin/latex-suite/folding.vim Modified: trunk/vimfiles/ftplugin/latex-suite/folding.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/folding.vim 2008-05-29 21:16:58 UTC (rev 1030) +++ trunk/vimfiles/ftplugin/latex-suite/folding.vim 2008-05-29 22:16:45 UTC (rev 1031) @@ -377,7 +377,7 @@ end let retText = matchstr(ftxto, '^[^:]*').': '.header. - \ ' ('.label.') : '.caption + \ ' ('.label.'): '.caption return leadingSpace.retText elseif getline(v:foldstart) =~ '^%' && getline(v:foldstart) !~ '^%%fake' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-29 21:16:52
|
Revision: 1030 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1030&view=rev Author: tmaas Date: 2008-05-29 14:16:58 -0700 (Thu, 29 May 2008) Log Message: ----------- - merge foldingfix.dpatch from http://ftp.de.debian.org/debian/pool/main/v/vim-latexsuite/vim-latexsuite_20060325-5.dsc NOTE: The patch was modified, because line 14 in the patch should be a removed line in folding.vim - Make the extracting of the contents of \label a little better, i.e. work when there exists a }-character in the same line after the \label - Debian Bugreport with an example that breaks: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=246798 Modified Paths: -------------- trunk/vimfiles/ftplugin/latex-suite/folding.vim Modified: trunk/vimfiles/ftplugin/latex-suite/folding.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/folding.vim 2008-05-29 20:21:53 UTC (rev 1029) +++ trunk/vimfiles/ftplugin/latex-suite/folding.vim 2008-05-29 21:16:58 UTC (rev 1030) @@ -284,7 +284,7 @@ " In other words, the pattern is safe, but not exact. call AddSyntaxFoldItem('^\s*\\'.s.'{[^{}]*$','^[^}]*}',0,0) else - call AddSyntaxFoldItem('^\s*\\begin{'.s,'^\s*\\end{'.s,0,0) + call AddSyntaxFoldItem('^\s*\\begin{'.s,'\(^\|\s\)\s*\\end{'.s,0,0) endif endif endwhile @@ -362,7 +362,9 @@ end elseif getline(i) =~ '\\label' let label = matchstr(getline(i), '\\label{\zs.*') - let label = substitute(label, '\zs}[^}]*$', '', '') + " :FIXME: this does not work when \label contains a + " newline or a }-character + let label = substitute(label, '\([^}]*\)}.*$', '\1', '') end let i = i + 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-29 20:21:46
|
Revision: 1029 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1029&view=rev Author: tmaas Date: 2008-05-29 13:21:53 -0700 (Thu, 29 May 2008) Log Message: ----------- ignore .tgz files in vimfiles Property Changed: ---------------- trunk/vimfiles/ Property changes on: trunk/vimfiles ___________________________________________________________________ Name: svn:ignore + *.tgz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-29 20:19:05
|
Revision: 1028 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1028&view=rev Author: tmaas Date: 2008-05-29 13:19:06 -0700 (Thu, 29 May 2008) Log Message: ----------- - new simple Makefile for snapshot.tgz creation and usage in distributions Added Paths: ----------- trunk/vimfiles/Makefile Added: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile (rev 0) +++ trunk/vimfiles/Makefile 2008-05-29 20:19:06 UTC (rev 1028) @@ -0,0 +1,24 @@ +VIMDIR = /usr/share/vim +BINDIR = /usr/bin + +VERSION=1.5 + +DATE = $(shell date +%Y%m%d) +SNAPSHOTNAME = vim-latex-$(VERSION)-$(DATE) + +snapshot: + rm -rf -- ./$(SNAPSHOTNAME) + svn export . $(SNAPSHOTNAME) + tar cvzf ./$(SNAPSHOTNAME).tgz ./$(SNAPSHOTNAME) + rm -rf -- ./$(SNAPSHOTNAME) + +install: + install -d "$(DESTDIR)$(VIMDIR)/doc" + install -m 0644 doc/*.txt "$(DESTDIR)$(VIMDIR)/doc" + + install -d "$(DESTDIR)$(VIMDIR)" + cp -R compiler ftplugin indent plugin "$(DESTDIR)$(VIMDIR)" + chmod 0755 "$(DESTDIR)$(VIMDIR)/ftplugin/latex-suite/outline.py" + + install -d "$(DESTDIR)$(BINDIR)" + install latextags ltags "$(DESTDIR)$(BINDIR)" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-29 19:16:20
|
Revision: 1027 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1027&view=rev Author: tmaas Date: 2008-05-29 12:16:29 -0700 (Thu, 29 May 2008) Log Message: ----------- - remove brackets.vim texviewer.vim, they are not used anymore and should have removed themselves on any user system by now Removed Paths: ------------- trunk/vimfiles/ftplugin/tex/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-29 19:08:57
|
Revision: 1026 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1026&view=rev Author: tmaas Date: 2008-05-29 12:09:02 -0700 (Thu, 29 May 2008) Log Message: ----------- set svn:executable for executables Property Changed: ---------------- trunk/vimfiles/latextags trunk/vimfiles/ltags Property changes on: trunk/vimfiles/latextags ___________________________________________________________________ Name: svn:executable + * Property changes on: trunk/vimfiles/ltags ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-06 15:33:04
|
Revision: 1025 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1025&view=rev Author: tmaas Date: 2008-05-06 08:28:33 -0700 (Tue, 06 May 2008) Log Message: ----------- -not used anymore Removed Paths: ------------- trunk/CVSROOT/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-06 15:21:42
|
Revision: 1024 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1024&view=rev Author: tmaas Date: 2008-05-06 08:20:47 -0700 (Tue, 06 May 2008) Log Message: ----------- mention svn instead of cvs for tracking changes Modified Paths: -------------- trunk/htdocs/download.inc Modified: trunk/htdocs/download.inc =================================================================== --- trunk/htdocs/download.inc 2008-05-06 15:15:14 UTC (rev 1023) +++ trunk/htdocs/download.inc 2008-05-06 15:20:47 UTC (rev 1024) @@ -100,15 +100,10 @@ <hr> <h3>Other ways to keep up with changes</h3> +<p>The sourcecode is managed using subversion (svn). To access the repository, +follow the instructions that are linked in the navigation bar. +</p> -<a href="http://cvs.sourceforge.net/cvstarballs/vim-latex-cvsroot.tar.gz" -class="list">CVS snapshot</a> Sourceforge provides projects with a nightly -updated archived version of the CVS repository. A better way to stay in -step with the project if you use CVS but do not want to be a developer is -to follow the instructions for anonymous CVS access <a -href="http://sourceforge.net/cvs/?group_id=52322">here</a>. Use vimfiles in -place of <i>modulename</i>. - <a name="advanced"> <h3>Advanced Installation Instructions</h3> <p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-06 15:15:28
|
Revision: 1023 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1023&view=rev Author: tmaas Date: 2008-05-06 08:15:14 -0700 (Tue, 06 May 2008) Log Message: ----------- instead of cvs, svn is now used Modified Paths: -------------- trunk/htdocs/head.inc Modified: trunk/htdocs/head.inc =================================================================== --- trunk/htdocs/head.inc 2008-05-06 15:11:45 UTC (rev 1022) +++ trunk/htdocs/head.inc 2008-05-06 15:15:14 UTC (rev 1023) @@ -35,7 +35,8 @@ <p></p> <hr class=navig> <div class=navheader>Developers</div> - <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/vim-latex/vimfiles">CVS</a><br> + <a href="http://vim-latex.svn.sourceforge.net/viewvc/vim-latex/">SVN Webinterface</a><br> + <a href="http://sourceforge.net/svn/?group_id=52322">SVN instructions</a><br> <a href="index.php?subject=links&title=Links">Links</a><br> <img src="blank.gif" height="150" width="1"><br> <p class="doublesmall"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-06 15:11:46
|
Revision: 1022 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1022&view=rev Author: tmaas Date: 2008-05-06 08:11:45 -0700 (Tue, 06 May 2008) Log Message: ----------- remove svn:executable from non-executable files Property Changed: ---------------- trunk/htdocs/blank.gif trunk/htdocs/branching.inc trunk/htdocs/coding-style.inc trunk/htdocs/download/RELEASE-1.5.txt trunk/htdocs/download.inc trunk/htdocs/screenshots/after-packages.png trunk/htdocs/screenshots/after-template.png trunk/htdocs/screenshots/compilation-error.png trunk/htdocs/screenshots/environments-menu.png trunk/htdocs/screenshots/folding.png trunk/htdocs/screenshots/formula-tex.png trunk/htdocs/screenshots/formula-typing.png trunk/htdocs/screenshots/starting-packages.png trunk/htdocs/screenshots/template-menu.png trunk/htdocs/screenshots.inc trunk/htdocs/style.css trunk/htdocs/vim-latex.gif trunk/htdocs/vim_created.gif trunk/htdocs/weare.inc Property changes on: trunk/htdocs/blank.gif ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/branching.inc ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/coding-style.inc ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/download/RELEASE-1.5.txt ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/download.inc ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/after-packages.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/after-template.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/compilation-error.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/environments-menu.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/folding.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/formula-tex.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/formula-typing.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/starting-packages.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots/template-menu.png ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/screenshots.inc ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/style.css ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/vim-latex.gif ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/vim_created.gif ___________________________________________________________________ Name: svn:executable - * Property changes on: trunk/htdocs/weare.inc ___________________________________________________________________ Name: svn:executable - * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2008-05-06 15:10:57
|
Revision: 1020 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1020&view=rev Author: tmaas Date: 2008-05-06 08:03:15 -0700 (Tue, 06 May 2008) Log Message: ----------- Use web-svn instead of local copy for templates Modified Paths: -------------- trunk/htdocs/head.inc Removed Paths: ------------- trunk/htdocs/templates.inc Modified: trunk/htdocs/head.inc =================================================================== --- trunk/htdocs/head.inc 2008-05-06 14:56:14 UTC (rev 1019) +++ trunk/htdocs/head.inc 2008-05-06 15:03:15 UTC (rev 1020) @@ -31,7 +31,7 @@ Requests <br/>Bug Reports <br/>Mailing List <br/></a><br> <p></p> <a href="http://vim-latex.svn.sourceforge.net/viewvc/vim-latex/trunk/vimfiles/ftplugin/latex-suite/packages/">Package files</a><br> - <a href="index.php?subject=templates&title=Templates">Templates</a><br> + <a href="http://vim-latex.svn.sourceforge.net/viewvc/vim-latex/trunk/vimfiles/ftplugin/latex-suite/templates/">Templates</a><br> <p></p> <hr class=navig> <div class=navheader>Developers</div> Deleted: trunk/htdocs/templates.inc =================================================================== --- trunk/htdocs/templates.inc 2008-05-06 14:56:14 UTC (rev 1019) +++ trunk/htdocs/templates.inc 2008-05-06 15:03:15 UTC (rev 1020) @@ -1,23 +0,0 @@ -<table> -<tr> - <td><b>Name of the template:</b></td> - <td> </td> - <td><b>Last modified:</b></td> -</tr> -<? -$dir = getcwd()."/templates"; -$tempdir = dir($dir); -while($file = $tempdir->read()){ - if($file!="." && $file!=".." && strncmp($file,"CVS",3)){ - $filetable[] = $file; - } -} -$tempdir->close(); -asort($filetable); -foreach ($filetable as $tempfile){ -echo "<tr><td><a href='templates/".$tempfile."'>".$tempfile."</a></td>"; -echo "<td> </td>"; -echo "<td>".date("F j, Y", filemtime($dir."/".$tempfile))."</td></tr>\n"; -} -?> -</table> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |