Thread: [Vim-latex-devel] bug report
Brought to you by:
srinathava,
tmaas
From: Animesh N N. <an...@gm...> - 2003-05-23 19:29:58
|
hi sri, bug report: if you have three files, in the same folder, called: 1) myfile.tex 2) myfile.ltx 3) myfile.latex and i'm using VLS to edit, compile and view "myfile.ltx" or "myfile.latex", VLS goes and picks up and compiles myfile.tex instead. you might want to look into this. ciao animesh -- : ####[ GNU/Linux One Stanza Tip (LOST) ]####################### Sub : Installing True Type (TTF) fonts RH-8.0 LOST #408 While running X, just copy the ttf file into $HOME/.fonts and then run the command fc-cache. ####[unmadindu (at) Softhome.net]############################# : |
From: Mikolaj M. <mi...@wp...> - 2003-05-24 14:58:35
|
On Sat, May 24, 2003 at 12:58:51AM +0530, Animesh N Nerurkar wrote: > hi sri, > bug report: > if you have three files, in the same folder, called: > 1) myfile.tex > 2) myfile.ltx > 3) myfile.latex > and i'm using VLS to edit, compile and view "myfile.ltx" or > "myfile.latex", VLS goes and picks up and compiles myfile.tex instead. > you might want to look into this. I see. lS calls latex with: latex file [without extension and default extension is .tex] find this section in compiler.vim " otherwise, if a *.latexmain file is found, then use that file to " construct a main file. if mainfname == '' let mainfname = expand("%:t:r") endif exec 'make '.mainfname And remove :r. m. ps. Could you wrap lines? |
From: Animesh N N. <an...@gm...> - 2003-05-24 20:13:06
|
Hi Mikolaj, On Saturday 24 May 2003 19:42, Mikolaj Machowski wrote: > I see. lS calls latex with: latex file [without extension and default > extension is .tex] ... ... > And remove :r. done. it works great now, thanks :) > ps. Could you wrap lines? done again -set to 78 columns. ciao animesh -- : ####[ GNU/Linux One Stanza Tip (LOST) ]########################### Sub : Removing ^M from mails (using fetchmail) LOST #229 Tired of seeing ^M in your mailbox, on receiving mails from M$ systems ? If you use fetchmail, add the following line to your .fetchmailrc: stripcr (man fetchmail for details). ####<bi...@nd...>#################################### : |
From: Animesh N N. <an...@gm...> - 2003-05-25 19:44:48
|
Hi Mikolaj, On Saturday 24 May 2003 19:42, Mikolaj Machowski wrote: > I see. lS calls latex with: latex file [without extension and default > extension is .tex] > > find this section in compiler.vim > > " otherwise, if a *.latexmain file is found, then use that file > to " construct a main file. > if mainfname == '' > let mainfname = expand("%:t:r") > endif > exec 'make '.mainfname > > And remove :r. <sigh> now, after removing the ":r" it won't look at myfile.tex :( how do i get this script to look at all of these files without my having to add/remove that ":r" every time. -we need a permanent fix for this. ciao animesh -- : ####[ GNU/Linux One Stanza Tip (LOST) ]####################### Sub : awk tips [#9] LOST #469 # Print all lines whose first field (column) is different from # the previous one: $ awk '$1 != prev { print; prev = $1 }' textfile ####[banduji (at) symonds.net]################################ : |
From: Mikolaj M. <mi...@wp...> - 2003-05-28 11:11:34
|
On Mon, May 26, 2003 at 01:14:40AM +0530, Animesh N Nerurkar wrote: > Hi Mikolaj, > On Saturday 24 May 2003 19:42, Mikolaj Machowski wrote: > > I see. lS calls latex with: latex file [without extension and default > > extension is .tex] > > > > find this section in compiler.vim > > > > " otherwise, if a *.latexmain file is found, then use that file > > to " construct a main file. > > if mainfname == '' > > let mainfname = expand("%:t:r") > > endif > > exec 'make '.mainfname > > > > And remove :r. > <sigh> > now, after removing the ":r" it won't look at myfile.tex :( > how do i get this script to look at all of these files without my having to > add/remove that ":r" every time. -we need a permanent fix for this. Look when? m. |
From: Animesh N N. <an...@gm...> - 2003-05-28 18:05:42
|
Hi Mikolaj, On Wednesday 28 May 2003 15:57, Mikolaj Machowski wrote: > > > And remove :r. > > > > <sigh> > > now, after removing the ":r" it won't look at myfile.tex :( > > how do i get this script to look at all of these files without my having > > to add/remove that ":r" every time. -we need a permanent fix for this. > > Look when? conditions: myfile.tex, myfile.ltx, myfile.latex all exist in same folder at same time; 1) with ":r", compile.vim does not see the .ltx and .latex files 2) without ":r", compile.vim does not see .tex file. regards animesh -- : ####[ GNU/Linux One Stanza Tip (LOST) ]####################### Sub : Single word spelling check using ispell LOST #397 #!/bin/sh if ! [ $1 ]; then echo "Usage: chk-spl [word]"; exit; fi echo $1 > /tmp/chk-spl.$$; ispell /tmp/chk-spl.$$ rm -f /tmp/chk-spl.$$; exit ####<bish (at) nde.vsnl.net.in>#################################### : |
From: Mikolaj M. <mi...@wp...> - 2003-05-31 17:48:06
|
On Wed, May 28, 2003 at 07:01:23PM +0530, Animesh N Nerurkar wrote: > Hi Mikolaj, > On Wednesday 28 May 2003 15:57, Mikolaj Machowski wrote: > > > > And remove :r. > > > > > > <sigh> > > > now, after removing the ":r" it won't look at myfile.tex :( > > > how do i get this script to look at all of these files without my having > > > to add/remove that ":r" every time. -we need a permanent fix for this. > > > > Look when? > conditions: myfile.tex, myfile.ltx, myfile.latex all exist in same folder at > same time; > 1) with ":r", compile.vim does not see the .ltx and .latex files > 2) without ":r", compile.vim does not see .tex file. It doesn't compile myfile.tex if you are in it, but work with myfile.ltx and myfile.latex, yes? m. |
From: Animesh N N. <an...@gm...> - 2003-05-31 19:05:05
|
Hi Mikolaj, On Saturday 31 May 2003 22:35, Mikolaj Machowski wrote: > It doesn't compile myfile.tex if you are in it, but work with myfile.ltx > and myfile.latex, yes? clarifications: 1) with ":r", compile.vim does not see the .ltx and .latex files, when they are open -and it proceeds to compile ,myfile.tex (even if that is not open) 2) without ":r", compile.vim does not see .tex file when t is open -and proceeds to throw up an error msg. ciao animesh -- : ####[ GNU/Linux One Stanza Tip (LOST) ]####################### Sub : Handling *.doc files in Linux LOST #338 Use wvWare (www.wvWare.com). wvWare is a suite of applications that converts Microsoft Word Documents (versions 2,5,6,7,8,9) into more useful formats such as HTML, LaTeX, ABW, WML, Text, etc ... wvWare is also a library which can be used by other applications to import Word documents. ####<[Discussions: ho...@fr... 14/07/02]>######### : |
From: Mikolaj M. <mi...@wp...> - 2003-06-01 23:23:59
|
On Sat, May 31, 2003 at 11:39:49PM +0530, Animesh N Nerurkar wrote: > Hi Mikolaj, > On Saturday 31 May 2003 22:35, Mikolaj Machowski wrote: > > It doesn't compile myfile.tex if you are in it, but work with myfile.ltx > > and myfile.latex, yes? > clarifications: > 1) with ":r", compile.vim does not see the .ltx and .latex files, when > they are open -and it proceeds to compile ,myfile.tex (even if that is not > open) Yes. > 2) without ":r", compile.vim does not see .tex file when t is open -and > proceeds to throw up an error msg. Couldn't reproduce that. I created myfile.tex, myfile.ltx, myfile.latex in the same directory and compiled and view all of them without problems. m. |