From 3657056cc302efd98056fd2349776781759b1229 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Mon, 28 Jan 2008 09:29:22 +0100 Subject: * tools/vim: - added APBTeam vim setup and tools. --- tools/vim/plugin/apbteam.vim | 71 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 tools/vim/plugin/apbteam.vim (limited to 'tools/vim/plugin/apbteam.vim') diff --git a/tools/vim/plugin/apbteam.vim b/tools/vim/plugin/apbteam.vim new file mode 100644 index 00000000..fa320567 --- /dev/null +++ b/tools/vim/plugin/apbteam.vim @@ -0,0 +1,71 @@ +" Name: apbteam +" Author: Nicolas Schodet +" Last Update: 2008-01-28 +" Description: Vim setup for APBTeam. +" License: Public domain. +" Installation: Put it in &runtimepath/plugin. + +if exists('g:apbteam_plugin') | finish | endif +let g:apbteam_plugin = 1 + +" APBTeam setup. +function! APBTeam() + set nocompatible + set backspace=2 + " Formatting. + set autoindent + set textwidth=78 + set formatoptions=tcqnl + set nocindent + set smartindent + set smarttab + set nojoinspaces + " Quickfix. + set errorformat= + \%*[^\"]\"%f\"%*\\D%l:\ %m, + \\"%f\"%*\\D%l:\ %m, + \%-G%f:%l:\ error:\ (Each\ undeclared\ identifier%.%#, + \%-G%f:%l:\ error:\ for\ each\ function\ it\ appears\ in.), + \%f:%l:%m, + \\"%f\"\\, + \\ line\ %l%*\\D%c%*[^\ ]\ %m, + \%D%*\\a:\ Entering\ directory\ `%f', + \%X%*\\a:\ Leaving\ directory\ `%f', + \%DMaking\ %*\\a\ in\ %f + " .h are for C. + let g:c_syntax_for_h = 1 + " Format options. + set cinoptions={.5s:.5sg.5sh.5st0(0=.5s + " Syntax highlighting & file types. + filetype plugin indent on + syn on + " Plugins. + let g:template_variant = "apbteam" + let g:ghph_GrabComments = 1 + let g:ghph_Reformat = 1 + let g:ghph_PutAfter = 1 + let g:ghph_SplitReturn = 1 +endfunction + +function! APBTeamProg() + " Programming options. + setlocal formatoptions+=rt + setlocal shortmess-=T + setlocal shiftwidth=4 + setlocal cindent + setlocal fo-=o fo-=r + setlocal com-=:// com+=:///,:// + " Call GHPH + nmap g :GHPH g + nmap h :GHPH p +endfunction + +" If you do not want automatic execution. +if exists('g:no_apbteam') | finish | endif + +call APBTeam() + +au FileType c call APBTeamProg() +au FileType cpp call APBTeamProg() +au BufNewFile README Template README +au BufNewFile *.c,*.cc,*.tcc,*.icc,*.h,*.hh,*.hpp,*.C,*.cxx TemplateHeader -- cgit v1.2.3