Thread: [Vim-latex-devel] Compilation creates empty buffers
Brought to you by:
srinathava,
tmaas
From: Peter V. <mai...@pe...> - 2012-01-27 11:58:08
|
Hi, I dont know if its just me but compilation creates an empty buffer with the same name as the .tex file I compile. Peter |
From: Ted P. <te...@te...> - 2012-02-08 20:45:16
|
Peter -- Can you give a minimal working example? Also, let's say you have a file called: test.tex and you created a latexmain called: test.latexmain It is known that Vim-LaTeX will create an empty buffer called "test." To get around this, name your latexmain: test.tex.latexmain This is the name that Vim-LaTeX expects. It just happens that getting rid of the "tex" mostly works... --Ted On 01/27/2012 06:58 AM, Peter Vasil wrote: > Hi, > > I dont know if its just me but compilation creates an empty buffer > with the same name as the .tex file I compile. > > Peter > > ------------------------------------------------------------------------------ > Try before you buy = See our experts in action! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-dev2 > _______________________________________________ > Vim-latex-devel mailing list > Vim...@li... > https://lists.sourceforge.net/lists/listinfo/vim-latex-devel -- Ted Pavlic <te...@te...> |
From: Peter V. <mai...@pe...> - 2012-02-11 15:02:43
|
It is strange, but I can't reproduce the problem anymore. Somehow the compilation doesn't create empty buffers anymore. Maybe it was some other setting which caused this. And yes I always create a file which has .latexmain as extension. i.e if my main file is main.tex then I create a file which is called main.tex.latexmain and everything works. Sorry for the noise, but the empty buffers were quite annoying. Peter On Wed, Feb 8, 2012 at 9:45 PM, Ted Pavlic <te...@te...> wrote: > Peter -- > > Can you give a minimal working example? > > Also, let's say you have a file called: > > test.tex > > and you created a latexmain called: > > test.latexmain > > It is known that Vim-LaTeX will create an empty buffer called "test." To > get around this, name your latexmain: > > test.tex.latexmain > > This is the name that Vim-LaTeX expects. It just happens that getting > rid of the "tex" mostly works... > > --Ted > > On 01/27/2012 06:58 AM, Peter Vasil wrote: >> Hi, >> >> I dont know if its just me but compilation creates an empty buffer >> with the same name as the .tex file I compile. >> >> Peter >> >> ------------------------------------------------------------------------------ >> Try before you buy = See our experts in action! >> The most comprehensive online learning library for Microsoft developers >> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >> Metro Style Apps, more. Free future releases when you subscribe now! >> http://p.sf.net/sfu/learndevnow-dev2 >> _______________________________________________ >> Vim-latex-devel mailing list >> Vim...@li... >> https://lists.sourceforge.net/lists/listinfo/vim-latex-devel > > -- > Ted Pavlic <te...@te...> |
From: Peter V. <mai...@pe...> - 2012-02-23 10:50:05
|
Ok, found out that the empty buffers are not generated from compiling. The empty buffers appear after opening quickfix window for cite completion. Peter On Sat, Feb 11, 2012 at 4:02 PM, Peter Vasil <mai...@pe...> wrote: > It is strange, but I can't reproduce the problem anymore. Somehow the > compilation doesn't create empty buffers anymore. Maybe it was some > other setting which caused this. And yes I always create a file which > has .latexmain as extension. i.e if my main file is main.tex then I > create a file which is called main.tex.latexmain and everything works. > > Sorry for the noise, but the empty buffers were quite annoying. > > Peter > > > On Wed, Feb 8, 2012 at 9:45 PM, Ted Pavlic <te...@te...> wrote: >> Peter -- >> >> Can you give a minimal working example? >> >> Also, let's say you have a file called: >> >> test.tex >> >> and you created a latexmain called: >> >> test.latexmain >> >> It is known that Vim-LaTeX will create an empty buffer called "test." To >> get around this, name your latexmain: >> >> test.tex.latexmain >> >> This is the name that Vim-LaTeX expects. It just happens that getting >> rid of the "tex" mostly works... >> >> --Ted >> >> On 01/27/2012 06:58 AM, Peter Vasil wrote: >>> Hi, >>> >>> I dont know if its just me but compilation creates an empty buffer >>> with the same name as the .tex file I compile. >>> >>> Peter >>> >>> ------------------------------------------------------------------------------ >>> Try before you buy = See our experts in action! >>> The most comprehensive online learning library for Microsoft developers >>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >>> Metro Style Apps, more. Free future releases when you subscribe now! >>> http://p.sf.net/sfu/learndevnow-dev2 >>> _______________________________________________ >>> Vim-latex-devel mailing list >>> Vim...@li... >>> https://lists.sourceforge.net/lists/listinfo/vim-latex-devel >> >> -- >> Ted Pavlic <te...@te...> |
From: Gerd W. <ger...@ma...> - 2012-04-16 07:07:18
|
In my personal copy of the latex-suite (https://github.com/gerw/vim-latex-suite) I used the following change in ftplugin/latex-suite/texviewer.vim to avoid those empty buffers. Regards Gerd @@ -855,7 +856,8 @@ function! Tex_FindBibFiles() call Tex_Debug(":Tex_FindBibFiles: ", "view") let mainfname = Tex_GetMainFileName(':p') - exec 'new ' . fnameescape(mainfname) + split + exec 'silent! e '.fnameescape(mainfname) if search('\\\(no\)\?bibliography{', 'w') On 02/23/2012 11:49 AM, Peter Vasil wrote: > Ok, found out that the empty buffers are not generated from compiling. > > The empty buffers appear after opening quickfix window for cite completion. > > Peter > > On Sat, Feb 11, 2012 at 4:02 PM, Peter Vasil > <mai...@pe...> wrote: >> It is strange, but I can't reproduce the problem anymore. Somehow the >> compilation doesn't create empty buffers anymore. Maybe it was some >> other setting which caused this. And yes I always create a file which >> has .latexmain as extension. i.e if my main file is main.tex then I >> create a file which is called main.tex.latexmain and everything works. >> >> Sorry for the noise, but the empty buffers were quite annoying. >> >> Peter >> >> >> On Wed, Feb 8, 2012 at 9:45 PM, Ted Pavlic<te...@te...> wrote: >>> Peter -- >>> >>> Can you give a minimal working example? >>> >>> Also, let's say you have a file called: >>> >>> test.tex >>> >>> and you created a latexmain called: >>> >>> test.latexmain >>> >>> It is known that Vim-LaTeX will create an empty buffer called "test." To >>> get around this, name your latexmain: >>> >>> test.tex.latexmain >>> >>> This is the name that Vim-LaTeX expects. It just happens that getting >>> rid of the "tex" mostly works... >>> >>> --Ted >>> >>> On 01/27/2012 06:58 AM, Peter Vasil wrote: >>>> Hi, >>>> >>>> I dont know if its just me but compilation creates an empty buffer >>>> with the same name as the .tex file I compile. >>>> >>>> Peter >>>> >>>> ------------------------------------------------------------------------------ >>>> Try before you buy = See our experts in action! >>>> The most comprehensive online learning library for Microsoft developers >>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >>>> Metro Style Apps, more. Free future releases when you subscribe now! >>>> http://p.sf.net/sfu/learndevnow-dev2 >>>> _______________________________________________ >>>> Vim-latex-devel mailing list >>>> Vim...@li... >>>> https://lists.sourceforge.net/lists/listinfo/vim-latex-devel >>> >>> -- >>> Ted Pavlic<te...@te...> > > ------------------------------------------------------------------------------ > Virtualization& Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > Vim-latex-devel mailing list > Vim...@li... > https://lists.sourceforge.net/lists/listinfo/vim-latex-devel |