Revision: 1071
http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1071&view=rev
Author: tmaas
Date: 2009-09-30 12:17:28 +0000 (Wed, 30 Sep 2009)
Log Message:
-----------
Description: Primary paste buffer should not be overwritten with the contents
of the file which the .latexmain file corresponds to.
Author: Johann Felix Soden <jo...@gm...>
Bug: http://sourceforge.net/tracker/index.php?func=detail&aid=1103347&group_id=52322&atid=466456
Bug-Debian: http://bugs.debian.org/280793
Modified Paths:
--------------
trunk/vimfiles/ftplugin/latex-suite/packages.vim
Modified: trunk/vimfiles/ftplugin/latex-suite/packages.vim
===================================================================
--- trunk/vimfiles/ftplugin/latex-suite/packages.vim 2009-09-15 18:28:17 UTC (rev 1070)
+++ trunk/vimfiles/ftplugin/latex-suite/packages.vim 2009-09-30 12:17:28 UTC (rev 1071)
@@ -668,7 +668,10 @@
augroup LatexSuite
au LatexSuite User LatexSuiteFileType
\ call Tex_Debug('packages.vim: Catching LatexSuiteFileType event', 'pack') |
- \ call Tex_pack_updateall(0)
+ \ let s:save_clipboard = &clipboard |
+ \ set clipboard= |
+ \ call Tex_pack_updateall(0) |
+ \ let &clipboard=s:save_clipboard
augroup END
" vim:fdm=marker:ts=4:sw=4:noet:ff=unix
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|