xref: /vim-8.2.3635/runtime/ftplugin/kwt.vim (revision 00a927d6)
1" Vim filetype plugin file
2" Language:	Kimwitu++
3" Maintainer:	Michael Piefel <[email protected]>
4" Last Change:	16 August 2001
5
6" Behaves almost like C++
7runtime! ftplugin/cpp.vim ftplugin/cpp_*.vim ftplugin/cpp/*.vim
8
9set cpo-=C
10
11" Limit the browser to related files
12if 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"
17endif
18
19" Set the errorformat for the Kimwitu++ compiler
20set efm+=kc%.%#:\ error\ at\ %f:%l:\ %m
21