[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texrc,1.24,1.25
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2003-04-07 20:53:42
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv7359 Modified Files: texrc Log Message: new variable g:Tex_TEXINPUTS Index: texrc =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** texrc 4 Apr 2003 23:25:11 -0000 1.24 --- texrc 7 Apr 2003 20:53:31 -0000 1.25 *************** *** 383,390 **** --- 383,392 ---- " treated as single characters for backspacing. " Setting this to zero will leave the <BS> key unmapped. + " Default: 1 TexLet g:Tex_SmartKeyBS = 1 " Pressing " (english double quote) will insert `` or '' by making an " intelligent guess about whether we intended to open or close a quote. + " Default: 1 TexLet g:Tex_SmartKeyQuote = 1 *************** *** 399,402 **** --- 401,405 ---- " broken across lines. " NOTE: Setting this to 1 has the side-effect of making the 'tw' setting be 0. + " Default: TexLet g:Tex_SmartKeySpace = 0 *************** *** 408,412 **** " to $1,\ldots,n$. The amsmath package actually provides a command \dots " which does this. Maybe use that if amsmath is detected? ! " TexLet g:Tex_SmartKeyDot = 1 --- 411,415 ---- " to $1,\ldots,n$. The amsmath package actually provides a command \dots " which does this. Maybe use that if amsmath is detected? ! " Default: 1 TexLet g:Tex_SmartKeyDot = 1 *************** *** 416,429 **** --- 419,437 ---- " Options for preview window for ref/cite completion. " Height of cwindow + " Default: 5 TexLet g:Tex_ViewerCwindowHeight = 5 " Height of preview window + " Default: 10 TexLet g:Tex_ViewerPreviewHeight = 10 " Options for explorer completion. " Height of explorer window + " Default: 10 TexLet g:Tex_ExplorerHeight = 10 " Directory for images. Read |latex-completion-explorer| before changing + " Default: '' TexLet g:Tex_ImageDir = '' + " }}} *************** *** 440,443 **** --- 448,452 ---- " mathematical fonts (\mathrm), mathematical diacritics (\dot), binary " relational operators etc. This menu compromises about 75% of the menus. + " Default: 1 TexLet g:Tex_MathMenus = 1 *************** *** 447,450 **** --- 456,460 ---- " be collected together into a single 'Tex-Elements' menu. Setting this to 0 " creates seperate menus for each of them. + " Default: 1 TexLet g:Tex_NestElementMenus = 1 *************** *** 458,462 **** " menu. " Default: 1 ! TexLet g:Tex_NestPackagesMenu = 0 " This is the prefix added to the menu names created by latex suite. Add a --- 468,472 ---- " menu. " Default: 1 ! TexLet g:Tex_NestPackagesMenu = 1 " This is the prefix added to the menu names created by latex suite. Add a *************** *** 465,468 **** --- 475,479 ---- " NOTE: With a '.' as the last character of the following setting, every " single menu created by latex suite will be nested under the same menu. + " Default: 'TeX-' TexLet g:Tex_MenuPrefix = 'TeX-' *************** *** 486,489 **** --- 497,510 ---- " by g:Tex_Folding), so you can do <F6> or \rf to refresh/create folds. TexLet g:Tex_AutoFolding = 1 + + " }}} + " ============================================================================== + " TEXINPUTS: check this directories for user packages {{{ + " Search some directories for user packages. They can contain, \usepackage, + " \newcommand etc. commands. LaTeX uses $TEXINPUTS variable. Because relations + " between Vim and shell aren't straightforward copy it here. Use exact syntax. + " Example g:Tex_TEXINPUTS = '.:~/texmf//:'. More in |latex-package-scanning|. + " Default: '' + TexLet g:Tex_TEXINPUTS = '' " }}} |