* configure.ac: New switch for disabling -O2 (--disable-optimizations).
[cacao.git] / contrib / log2xml.vim
1 " log2xml.vim - vim 6.1+ settings for browsing ouput from log2xml
2
3 " Prerequisites:
4 "     vim 6.1 or newer
5 "     matchit.vim (recommended for jumping between <call> and </call> with %)
6 "     (You can get both at www.vim.org.)
7 "
8 " Usage:
9 "     Before opening the .xml file type
10 "         :source log2xml.vim
11 "     You may want to add this to your .vimrc
12 "
13 "     You can use F11 to open/close a folded call.
14
15 let g:xml_syntax_folding=1
16
17 au FileType xml syntax on
18 au FileType xml set nowrap
19 au FileType xml let b:match_words="<call:</call"
20 au FileType xml set foldmethod=syntax
21 au FileType xml set foldnestmax=200
22
23 map <F11> za
24
25 hi Folded ctermfg=black ctermbg=lightgray guifg=blue guibg=yellow
26