aboutsummaryrefslogtreecommitdiff
path: root/.vim/ftplugin/latex-suite/packages/moreverb
blob: 8614e3b8e70f4df572df78453a93614dbb427a0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
if exists("moreverb_package_file")
	finish
endif
let moreverb_package_file = 1

let g:TeX_package_option_moreverb = ''

let g:TeX_package_moreverb = 
\ 'ens:verbatimwrite:{<++>},'
\.'ens:verbatimtab:[<++>],'
\.'ens:listing:[<+step+>]{<+number+>},'
\.'ens:listing*:[<+step+>]{<+number+>},'
\.'env:boxedverbatim,'
\.'bra:verbatimtabsize,'
\.'bra:listingoffset,'
\.'brs:listinginput[<++>]{<++>}{<++>},'
\.'brs:verbatimtabinput[<++>]{<++>}'

let g:Tex_completion_explorer = g:Tex_completion_explorer.'verbatimtabinput,'

syn region texZone   start="\\begin{verbatimwrite}"  end="\\end{verbatimwrite}\|%stopzone\>" fold
syn region texZone   start="\\begin{verbatimtab}"    end="\\end{verbatimtab}\|%stopzone\>" fold
syn region texZone   start="\\begin{boxedverbatim}"  end="\\end{boxedverbatim}\|%stopzone\>" fold
syn region texZone   start="\\begin{listing}"  end="\\end{listing}\|%stopzone\>" fold
syn region texZone   start="\\begin{listing*}"  end="\\end{listing*}\|%stopzone\>" fold


" vim:ft=vim:ff=unix: