7
|
1 " Vim filetype plugin file
|
|
2 " Language: Kimwitu++
|
|
3 " Maintainer: Michael Piefel <piefel@informatik.hu-berlin.de>
|
|
4 " Last Change: 16 August 2001
|
|
5
|
|
6 " Behaves almost like C++
|
|
7 runtime! ftplugin/cpp.vim ftplugin/cpp_*.vim ftplugin/cpp/*.vim
|
|
8
|
|
9 set cpo-=C
|
|
10
|
|
11 " Limit the browser to related files
|
|
12 if has("gui_win32") && !exists("b:browsefilter")
|
|
13 let b:browsefilter = "Kimwitu/Kimwitu++ Files (*.k)\t*.k\n" .
|
|
14 \ "Lex/Flex Files (*.l)\t*.l\n" .
|
|
15 \ "Yacc/Bison Files (*.y)\t*.y\n" .
|
|
16 \ "All Files (*.*)\t*.*\n"
|
|
17 endif
|
|
18
|
|
19 " Set the errorformat for the Kimwitu++ compiler
|
|
20 set efm+=kc%.%#:\ error\ at\ %f:%l:\ %m
|