[Vim-latex-cvs] SF.net SVN: vim-latex: [1005] trunk/vimfiles/ftplugin/latex-suite
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2006-03-28 04:32:18
|
Revision: 1005 Author: srinathava Date: 2006-03-27 20:32:11 -0800 (Mon, 27 Mar 2006) ViewCVS: http://svn.sourceforge.net/vim-latex/?rev=1005&view=rev Log Message: ----------- New: Latex-suite (once again) honors Tex_ImageDir. This setting is supposed to be the name of a _single_ directory. Its used when <F9> is pressed to complete an \includegraphics command. In this situation, the file browser is opened on the directory pointed to by Tex_ImageDir rather than the current directory. Modified Paths: -------------- trunk/vimfiles/ftplugin/latex-suite/texviewer.vim trunk/vimfiles/ftplugin/latex-suite/version.vim Modified: trunk/vimfiles/ftplugin/latex-suite/texviewer.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/texviewer.vim 2006-03-25 08:40:15 UTC (rev 1004) +++ trunk/vimfiles/ftplugin/latex-suite/texviewer.vim 2006-03-28 04:32:11 UTC (rev 1005) @@ -241,7 +241,7 @@ call FB_SetVar('FB_CallBackFunction', 'Tex_CompleteFileName') call FB_SetVar('FB_CallBackFunctionArgs', '"'.a:ext.'"') - call FB_OpenFileBrowser('.') + call FB_OpenFileBrowser(Tex_GetVarValue('Tex_ImageDir', '.')) endfunction " }}} " Tex_CompleteFileName: {{{ " Description: Modified: trunk/vimfiles/ftplugin/latex-suite/version.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/version.vim 2006-03-25 08:40:15 UTC (rev 1004) +++ trunk/vimfiles/ftplugin/latex-suite/version.vim 2006-03-28 04:32:11 UTC (rev 1005) @@ -24,7 +24,7 @@ " "stabilize" that version by releasing a few pre-releases and then " keep that as a stable point. function! Tex_Version() - return "Latex-Suite: version 1.8.13" + return "Latex-Suite: version 1.8.14" endfunction com! -nargs=0 TVersion echo Tex_Version() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |