"############################################################################################### " " Filename: c.vim " " Description: C/C++-IDE. Write programs by inserting complete statements, " comments, idioms, code snippets, templates and comments. " Compile, link and run one-file-programs without a makefile. " See also help file csupport.txt . " " GVIM Version: 7.0+ " " Configuration: There are some personal details which should be configured " (see the files README.csupport and csupport.txt). " " Author: Dr.-Ing. Fritz Mehner, FH Südwestfalen, 58644 Iserlohn, Germany " Email: mehner@fh-swf.de " " Version: see variable g:C_Version below " Created: 04.11.2000 " License: Copyright (c) 2000-2007, Fritz Mehner " This program is free software; you can redistribute it and/or " modify it under the terms of the GNU General Public License as " published by the Free Software Foundation, version 2 of the " License. " This program is distributed in the hope that it will be " useful, but WITHOUT ANY WARRANTY; without even the implied " warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR " PURPOSE. " See the GNU General Public License version 2 for more details. " Revision: $Id: c.vim,v 1.35 2007/11/21 09:14:16 mehner Exp $ " "------------------------------------------------------------------------------ " if v:version < 700 echohl WarningMsg | echo 'The plugin c-support.vim needs Vim version >= 7 .'| echohl None finish endif " " Prevent duplicate loading: " if exists("g:C_Version") || &cp finish endif let g:C_Version= "5.0.5" " version number of this script; do not change " "############################################################################################### " " Global variables (with default values) which can be overridden. " " Platform specific items: {{{1 " - root directory " - characters that must be escaped for filenames " let s:MSWIN = has("win16") || has("win32") || has("win64") || \ has("win95") || has("win32unix") " if s:MSWIN " let s:escfilename = '' let s:plugin_dir = $VIM.'\vimfiles\' let s:C_CodeSnippets = s:plugin_dir.'c-support/codesnippets/' let s:C_IndentErrorLog = $HOME.'.indent.errorlog' let s:installation = 'system' " let s:C_Display = '' " else " let s:escfilename = ' \%#[]' let s:installation = 'local' " " user / system wide installation (Linux/Unix) " if match( expand(""), $VIM ) >= 0 " system wide installation let s:plugin_dir = $VIM.'/vimfiles/' let s:installation = 'system' else " user installation assumed let s:plugin_dir = $HOME.'/.vim/' endif " let s:C_CodeSnippets = $HOME.'/.vim/c-support/codesnippets/' let s:C_IndentErrorLog = $HOME.'/.indent.errorlog' " let s:C_Display = system("echo -n $DISPLAY") " endif " Use of dictionaries {{{1 " Key word completion is enabled by the filetype plugin 'c.vim' " g:C_Dictionary_File must be global " if !exists("g:C_Dictionary_File") let g:C_Dictionary_File = s:plugin_dir.'c-support/wordlists/c-c++-keywords.list,'. \ s:plugin_dir.'c-support/wordlists/k+r.list,'. \ s:plugin_dir.'c-support/wordlists/stl_index.list' endif " " Modul global variables (with default values) which can be overridden. {{{1 " if s:MSWIN let s:C_CCompiler = 'gcc.exe' " the C compiler let s:C_CplusCompiler = 'g++.exe' " the C++ compiler let s:C_ExeExtension = '.exe' " file extension for executables (leading point required) let s:C_ObjExtension = '.obj' " file extension for objects (leading point required) else let s:C_CCompiler = 'gcc' " the C compiler let s:C_CplusCompiler = 'g++' " the C++ compiler let s:C_ExeExtension = '' " file extension for executables (leading point required) let s:C_ObjExtension = '.o' " file extension for objects (leading point required) endif " let s:C_CExtension = 'c' " C file extension; everything else is C++ let s:C_CFlags = '-Wall -g -O0 -c' " compiler flags: compile, don't optimize let s:C_CodeCheckExeName = 'check' let s:C_CodeCheckOptions = '-K13' let s:C_LFlags = '-Wall -g -O0' " compiler flags: link , don't optimize let s:C_Libs = '-lm' " libraries to use let s:C_LineEndCommColDefault = 49 let s:C_LoadMenus = 'yes' let s:C_MenuHeader = 'yes' let s:C_OutputGvim = 'vim' let s:C_Printheader = "%<%f%h%m%< %=%{strftime('%x %X')} Page %N" let s:C_Root = '&C\/C\+\+.' " the name of the root menu of this plugin let s:C_TypeOfH = 'cpp' let s:C_Wrapper = s:plugin_dir.'c-support/scripts/wrapper.sh' let s:C_XtermDefaults = '-fa courier -fs 12 -geometry 80x24' " let s:C_GlobalTemplateFile = s:plugin_dir.'c-support/templates/Templates' let s:C_GlobalTemplateDir = fnamemodify( s:C_GlobalTemplateFile, ":p:h" ).'/' let s:C_LocalTemplateFile = $HOME.'/.vim/c-support/templates/Templates' let s:C_LocalTemplateDir = fnamemodify( s:C_LocalTemplateFile, ":p:h" ).'/' let s:C_TemplateOverwrittenMsg= 'yes' " let s:C_FormatDate = '%x' let s:C_FormatTime = '%X' let s:C_FormatYear = '%Y' " "------------------------------------------------------------------------------ " " Look for global variables (if any), to override the defaults. " function! C_CheckGlobal ( name ) if exists('g:'.a:name) exe 'let s:'.a:name.' = g:'.a:name endif endfunction " ---------- end of function C_CheckGlobal ---------- " call C_CheckGlobal('C_CCompiler ') call C_CheckGlobal('C_CExtension ') call C_CheckGlobal('C_CFlags ') call C_CheckGlobal('C_CodeCheckExeName ') call C_CheckGlobal('C_CodeCheckOptions ') call C_CheckGlobal('C_CodeSnippets ') call C_CheckGlobal('C_CplusCompiler ') call C_CheckGlobal('C_ExeExtension ') call C_CheckGlobal('C_FormatDate ') call C_CheckGlobal('C_FormatTime ') call C_CheckGlobal('C_FormatYear ') call C_CheckGlobal('C_GlobalTemplateFile ') call C_CheckGlobal('C_IndentErrorLog ') call C_CheckGlobal('C_LFlags ') call C_CheckGlobal('C_Libs ') call C_CheckGlobal('C_LineEndCommColDefault ') call C_CheckGlobal('C_LoadMenus ') call C_CheckGlobal('C_LocalTemplateFile ') call C_CheckGlobal('C_MenuHeader ') call C_CheckGlobal('C_ObjExtension ') call C_CheckGlobal('C_OutputGvim ') call C_CheckGlobal('C_Printheader ') call C_CheckGlobal('C_Root ') call C_CheckGlobal('C_TemplateOverwrittenMsg ') call C_CheckGlobal('C_TypeOfH ') call C_CheckGlobal('C_XtermDefaults ') " "----- some variables for internal use only ----------------------------------- " " " set default geometry if not specified " if match( s:C_XtermDefaults, "-geometry\\s\\+\\d\\+x\\d\\+" ) < 0 let s:C_XtermDefaults = s:C_XtermDefaults." -geometry 80x24" endif " " escape the printheader " let s:C_Printheader = escape( s:C_Printheader, ' %' ) " let s:C_HlMessage = "" " " characters that must be escaped for filenames " let s:C_If0_Counter = 0 let s:C_If0_Txt = "If0Label_" " let s:C_SplintIsExecutable = 0 if executable( "splint" ) let s:C_SplintIsExecutable = 1 endif " let s:C_CodeCheckIsExecutable = 0 if executable( s:C_CodeCheckExeName ) let s:C_CodeCheckIsExecutable = 1 endif " "------------------------------------------------------------------------------ " Control variables (not user configurable) "------------------------------------------------------------------------------ let s:Attribute = { 'below':'', 'above':'', 'start':'', 'append':'', 'insert':'' } let s:C_Attribute = {} let s:C_ExpansionLimit = 10 let s:C_FileVisited = [] " let s:C_MacroNameRegex = '\([a-zA-Z][a-zA-Z0-9_]*\)' let s:C_MacroLineRegex = '^\s*|'.s:C_MacroNameRegex.'|\s*=\s*\(.*\)' let s:C_ExpansionRegex = '|?'.s:C_MacroNameRegex.'\(:\a\)\?|' let s:C_NonExpansionRegex = '|'.s:C_MacroNameRegex.'\(:\a\)\?|' " let s:C_TemplateNameDelimiter = '-+_,\. ' let s:C_TemplateLineRegex = '^==\s*\([a-zA-Z][0-9a-zA-Z'.s:C_TemplateNameDelimiter let s:C_TemplateLineRegex .= ']\+\)\s*==\s*\([a-z]\+\s*==\)\?' " let s:C_ExpansionCounter = {} let s:C_Template = {} let s:C_Macro = {'|AUTHOR|' : 'first name surname', \ '|AUTHORREF|' : '', \ '|EMAIL|' : '', \ '|COMPANY|' : '', \ '|PROJECT|' : '', \ '|COPYRIGHTHOLDER|': '' \ } let s:C_MacroFlag = { ':l' : 'lowercase' , \ ':u' : 'uppercase' , \ ':c' : 'capitalize' , \ ':L' : 'legalize name' , \ } "------------------------------------------------------------------------------ " C : C_InitMenus {{{1 " Initialization of C support menus "------------------------------------------------------------------------------ " function! C_InitMenus () " "=============================================================================================== "----- Menu : C main menu entry ------------------------------------------- {{{2 "=============================================================================================== " if s:C_Root != "" if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'C\/C\+\+ ' exe "amenu ".s:C_Root.'-Sep00- :' endif endif " "=============================================================================================== "----- Menu : C-Comments -------------------------------------------------- {{{2 "=============================================================================================== " if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'&Comments.&CommentsC\/C\+\+ ' exe "amenu ".s:C_Root.'&Comments.-Sep00- :' endif exe "amenu ".s:C_Root.'&Comments.end-of-&line\ comment :call C_LineEndComment( )' exe "vmenu ".s:C_Root.'&Comments.end-of-&line\ comment :call C_MultiLineEndComments( )' exe "amenu ".s:C_Root.'&Comments.ad&just\ end-of-line\ com\. :call C_AdjustLineEndComm("a")' exe "vmenu ".s:C_Root.'&Comments.ad&just\ end-of-line\ com\. :call C_AdjustLineEndComm("v")' exe "amenu ".s:C_Root.'&Comments.&set\ end-of-line\ com\.\ col\. :call C_GetLineEndCommCol()' exe "amenu ".s:C_Root.'&Comments.-SEP10- :' exe "amenu ".s:C_Root.'&Comments.code\ ->\ comment\ \/&*\ *\/ :call C_CodeComment("a","yes"):nohlsearchj' exe "vmenu ".s:C_Root.'&Comments.code\ ->\ comment\ \/&*\ *\/ :call C_CodeComment("v","yes"):nohlsearchj' exe "amenu ".s:C_Root.'&Comments.code\ ->\ comment\ &\/\/ :call C_CodeComment("a","no"):nohlsearchj' exe "vmenu ".s:C_Root.'&Comments.code\ ->\ comment\ &\/\/ :call C_CodeComment("v","no"):nohlsearchj' exe "amenu ".s:C_Root.'&Comments.c&omment\ ->\ code :call C_CommentCode("a"):nohlsearch' exe "vmenu ".s:C_Root.'&Comments.c&omment\ ->\ code :call C_CommentCode("v"):nohlsearch' exe "amenu ".s:C_Root.'&Comments.-SEP0- :' exe "amenu ".s:C_Root.'&Comments.&frame\ comment :call C_InsertTemplate("comment.frame")' exe "amenu ".s:C_Root.'&Comments.f&unction\ description :call C_InsertTemplate("comment.function")' exe "amenu ".s:C_Root.'&Comments.-SEP1- :' exe "amenu ".s:C_Root.'&Comments.&method\ description :call C_InsertTemplate("comment.method")' exe "amenu ".s:C_Root.'&Comments.cl&ass\ description :call C_InsertTemplate("comment.class")' exe "amenu ".s:C_Root.'&Comments.-SEP2- :' exe "amenu ".s:C_Root.'&Comments.file\ description :call C_InsertTemplate("comment.file-description")' exe "amenu ".s:C_Root.'&Comments.-SEP3- :' " "----- Submenu : C-Comments : file sections ------------------------------------------------------------- " exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.file\ sectionsC\/C\+\+ ' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.-Sep0- :' " exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&Header\ File\ Includes :call C_InsertTemplate("comment.file-section-cpp-header-includes")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Macros :call C_InsertTemplate("comment.file-section-cpp-macros")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Type\ Def\. :call C_InsertTemplate("comment.file-section-cpp-typedefs")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Data\ Types :call C_InsertTemplate("comment.file-section-cpp-data-types")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Variables :call C_InsertTemplate("comment.file-section-cpp-class-defs")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Prototypes :call C_InsertTemplate("comment.file-section-cpp-local-variables")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&Exp\.\ Function\ Def\. :call C_InsertTemplate("comment.file-section-cpp-prototypes")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&Local\ Function\ Def\. :call C_InsertTemplate("comment.file-section-cpp-function-defs-exported")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.-SEP6- :' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Class\ Def\. :call C_InsertTemplate("comment.file-section-cpp-function-defs-local")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.E&xp\.\ Class\ Impl\. :call C_InsertTemplate("comment.file-section-cpp-class-implementations-exported")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.L&ocal\ Class\ Impl\. :call C_InsertTemplate("comment.file-section-cpp-class-implementations-local")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.-SEP7- :' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&All\ sections,\ C ' \':call C_Comment_C_SectionAll("c")' exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.All\ §ions,\ C++ ' \':call C_Comment_C_SectionAll("cpp")' " " "----- Submenu : H-Comments : file sections ------------------------------------------------------------- " exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.H-file\ sectionsC\/C\+\+ ' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.-Sep0- :' "' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.&Header\ File\ Includes :call C_InsertTemplate("comment.file-section-hpp-header-includes")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Macros :call C_InsertTemplate("comment.file-section-hpp-macros")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Type\ Def\. :call C_InsertTemplate("comment.file-section-hpp-exported-typedefs")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Data\ Types :call C_InsertTemplate("comment.file-section-hpp-exported-data-types")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Variables :call C_InsertTemplate("comment.file-section-hpp-exported-class-defs")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Funct\.\ Decl\. :call C_InsertTemplate("comment.file-section-hpp-exported-variables")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.-SEP4- :' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.E&xported\ Class\ Def\. :call C_InsertTemplate("comment.file-section-hpp-exported-function-declarations")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.-SEP5- :' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.&All\ sections,\ C ' \':call C_Comment_H_SectionAll("c")' exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.All\ §ions,\ C++ ' \':call C_Comment_H_SectionAll("cpp")' " exe "amenu ".s:C_Root.'&Comments.-SEP8- :' " "----- Submenu : C-Comments : keyword comments ---------------------------------------------------------- " exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..keyw\.+comm\.C\/C\+\+ ' exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..-Sep0- :' " exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&BUG\: $:call C_InsertTemplate("comment.keyword-bug")' exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&COMPILER\: $:call C_InsertTemplate("comment.keyword-compiler")' exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&TODO\: $:call C_InsertTemplate("comment.keyword-todo")' exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:T&RICKY\: $:call C_InsertTemplate("comment.keyword-tricky")' exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&WARNING\: $:call C_InsertTemplate("comment.keyword-warning")' exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:W&ORKAROUND\: $:call C_InsertTemplate("comment.keyword-workaround")' exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&new\ keyword\: $:call C_InsertTemplate("comment.keyword-keyword")' " "----- Submenu : C-Comments : special comments ---------------------------------------------------------- " exe "amenu ".s:C_Root.'&Comments.&special\ comm\..special\ comm\.C\/C\+\+ ' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..-Sep0- :' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&EMPTY $:call C_CommentSpecial("EMPTY") kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&FALL\ THROUGH $:call C_CommentSpecial("FALL THROUGH") kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&IMPL\.\ TYPE\ CONV $:call C_CommentSpecial("IMPLICIT TYPE CONVERSION") kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&NO\ RETURN $:call C_CommentSpecial("NO RETURN") kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..NOT\ &REACHED $:call C_CommentSpecial("NOT REACHED") kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&TO\ BE\ IMPL\. $:call C_CommentSpecial("REMAINS TO BE IMPLEMENTED")kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..-SEP81- :' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..constant\ type\ is\ &long\ (L) $:call C_CommentSpecial("constant type is long")kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..constant\ type\ is\ &unsigned\ (U) $:call C_CommentSpecial("constant type is unsigned")kgJA' exe "amenu ".s:C_Root.'&Comments.&special\ comm\..constant\ type\ is\ unsigned\ l&ong\ (UL) $:call C_CommentSpecial("constant type is unsigned long")kgJA' " "----- Submenu : C-Comments : Tags ---------------------------------------------------------- " exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).tags\ (plugin)C\/C\+\+ ' exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).-Sep0- :' " exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&AUTHOR :call C_InsertMacroValue("AUTHOR")' exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).AUTHOR&REF :call C_InsertMacroValue("AUTHORREF")' exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&COMPANY :call C_InsertMacroValue("COMPANY")' exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).C&OPYRIGHTHOLDER :call C_InsertMacroValue("COPYRIGHTHOLDER")' exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&EMAIL :call C_InsertMacroValue("EMAIL")' exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&PROJECT :call C_InsertMacroValue("PROJECT")' exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&AUTHOR :call C_InsertMacroValue("AUTHOR")a' exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).AUTHOR&REF :call C_InsertMacroValue("AUTHORREF")a' exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&COMPANY :call C_InsertMacroValue("COMPANY")a' exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).C&OPYRIGHTHOLDER :call C_InsertMacroValue("COPYRIGHTHOLDER")a' exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&EMAIL :call C_InsertMacroValue("EMAIL")a' exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&PROJECT :call C_InsertMacroValue("PROJECT")a' " " exe "amenu ".s:C_Root.'&Comments.-SEP9- :' " exe " menu ".s:C_Root.'&Comments.&date a=C_InsertDateAndTime("d")' exe "imenu ".s:C_Root.'&Comments.&date =C_InsertDateAndTime("d")' exe " menu ".s:C_Root.'&Comments.date\ &time a=C_InsertDateAndTime("dt")' exe "imenu ".s:C_Root.'&Comments.date\ &time =C_InsertDateAndTime("dt")' exe "amenu ".s:C_Root.'&Comments.-SEP12- :' exe "amenu ".s:C_Root.'&Comments.\/\/\ xxx\ \ \ \ \ &->\ \ \/*\ xxx\ *\/ :call C_CommentCppToC()' exe "vmenu ".s:C_Root.'&Comments.\/\/\ xxx\ \ \ \ \ &->\ \ \/*\ xxx\ *\/ :'."'<,'>".'call C_CommentCppToC()' exe "amenu ".s:C_Root.'&Comments.\/*\ xxx\ *\/\ \ -&>\ \ \/\/\ xxx :call C_CommentCToCpp()' exe "vmenu ".s:C_Root.'&Comments.\/*\ xxx\ *\/\ \ -&>\ \ \/\/\ xxx :'."'<,'>".'call C_CommentCToCpp()' " "=============================================================================================== "----- Menu : C-Statements------------------------------------------------- {{{2 "=============================================================================================== " if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'&Statements.&StatementsC\/C\+\+ ' exe "amenu ".s:C_Root.'&Statements.-Sep00- :' endif " exe "amenu ".s:C_Root.'&Statements.&do\ \{\ \}\ while :call C_InsertTemplate("statements.do-while")' exe "vmenu ".s:C_Root.'&Statements.&do\ \{\ \}\ while :call C_InsertTemplate("statements.do-while", "v")' " exe "amenu ".s:C_Root.'&Statements.f&or :call C_InsertTemplate("statements.for")' " exe "anoremenu ".s:C_Root.'&Statements.fo&r\ \{\ \} :call C_InsertTemplate("statements.for-block")' exe "vnoremenu ".s:C_Root.'&Statements.fo&r\ \{\ \} :call C_InsertTemplate("statements.for-block", "v")' " exe "amenu ".s:C_Root.'&Statements.&if :call C_InsertTemplate("statements.if")' " exe "amenu ".s:C_Root.'&Statements.i&f\ \{\ \} :call C_InsertTemplate("statements.if-block")' exe "vmenu ".s:C_Root.'&Statements.i&f\ \{\ \} :call C_InsertTemplate("statements.if-block", "v")' exe "amenu ".s:C_Root.'&Statements.if\ &else :call C_InsertTemplate("statements.if-else")' exe "vmenu ".s:C_Root.'&Statements.if\ &else :call C_InsertTemplate("statements.if-else", "v")' " exe "amenu ".s:C_Root.'&Statements.if\ \{\ \}\ e&lse\ \{\ \} :call C_InsertTemplate("statements.if-block-else")' exe "vmenu ".s:C_Root.'&Statements.if\ \{\ \}\ e&lse\ \{\ \} :call C_InsertTemplate("statements.if-block-else", "v")' " exe "amenu ".s:C_Root.'&Statements.&while :call C_InsertTemplate("statements.while")' " exe "amenu ".s:C_Root.'&Statements.w&hile\ \{\ \} :call C_InsertTemplate("statements.while-block")' exe "vmenu ".s:C_Root.'&Statements.w&hile\ \{\ \} :call C_InsertTemplate("statements.while-block", "v")' " exe "amenu ".s:C_Root.'&Statements.&switch\ \{\ \} :call C_InsertTemplate("statements.switch")' exe "vmenu ".s:C_Root.'&Statements.&switch\ \{\ \} :call C_InsertTemplate("statements.switch", "v")' " exe "amenu ".s:C_Root.'&Statements.&case\ \.\.\.\ break <:call C_InsertTemplate("statements.case")' " " exe "amenu ".s:C_Root.'&Statements.&\{\ \} :call C_InsertTemplate("statements.block")' exe "vmenu ".s:C_Root.'&Statements.&\{\ \} :call C_InsertTemplate("statements.block", "v")' " " "=============================================================================================== "----- Menu : C-Idioms ---------------------------------------------------- {{{2 "=============================================================================================== " if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'&Idioms.&IdiomsC\/C\+\+ ' exe "amenu ".s:C_Root.'&Idioms.-Sep00- :' endif exe "amenu ".s:C_Root.'&Idioms.&function :call C_InsertTemplate("idioms.function")' exe "vmenu ".s:C_Root.'&Idioms.&function :call C_InsertTemplate("idioms.function", "v")' exe "amenu ".s:C_Root.'&Idioms.s&tatic\ function :call C_InsertTemplate("idioms.function-static")' exe "vmenu ".s:C_Root.'&Idioms.s&tatic\ function :call C_InsertTemplate("idioms.function-static", "v")' exe "amenu ".s:C_Root.'&Idioms.&main :call C_InsertTemplate("idioms.main")' exe "vmenu ".s:C_Root.'&Idioms.&main :call C_InsertTemplate("idioms.main", "v")' exe "amenu ".s:C_Root.'&Idioms.-SEP1- :' exe "amenu ".s:C_Root.'&Idioms.for(x=&0;\ x:call C_CodeFor("up" , "a")a' exe "amenu ".s:C_Root.'&Idioms.for(x=&n-1;\ x>=0;\ x\-=1) :call C_CodeFor("down", "a")a' exe "vmenu ".s:C_Root.'&Idioms.for(x=&0;\ x:call C_CodeFor("up" , "v")' exe "vmenu ".s:C_Root.'&Idioms.for(x=&n-1;\ x>=0;\ x\-=1) :call C_CodeFor("down", "v")' exe "amenu ".s:C_Root.'&Idioms.-SEP2- :' exe "amenu ".s:C_Root.'&Idioms.&enum\+typedef :call C_InsertTemplate("idioms.enum")' exe "amenu ".s:C_Root.'&Idioms.&struct\+typedef :call C_InsertTemplate("idioms.struct")' exe "amenu ".s:C_Root.'&Idioms.&union\+typedef :call C_InsertTemplate("idioms.union")' exe "vmenu ".s:C_Root.'&Idioms.&enum\+typedef :call C_InsertTemplate("idioms.enum" , "v")' exe "vmenu ".s:C_Root.'&Idioms.&struct\+typedef :call C_InsertTemplate("idioms.struct", "v")' exe "vmenu ".s:C_Root.'&Idioms.&union\+typedef :call C_InsertTemplate("idioms.union" , "v")' exe "amenu ".s:C_Root.'&Idioms.-SEP3- :' " exe " noremenu ".s:C_Root.'&Idioms.&printf oprintf("\n");2F"a' exe "inoremenu ".s:C_Root.'&Idioms.&printf printf("\n");2F"a' exe " noremenu ".s:C_Root.'&Idioms.s&canf oscanf("", & );F"i' exe "inoremenu ".s:C_Root.'&Idioms.s&canf scanf("", & );F"i' " exe "amenu ".s:C_Root.'&Idioms.-SEP4- :' exe "amenu ".s:C_Root.'&Idioms.p=ca&lloc\(n,sizeof(type)\) :call C_InsertTemplate("idioms.calloc")' exe "amenu ".s:C_Root.'&Idioms.p=m&alloc\(sizeof(type)\) :call C_InsertTemplate("idioms.malloc")' " exe "anoremenu ".s:C_Root.'&Idioms.si&zeof(\ \) isizeof()' exe "inoremenu ".s:C_Root.'&Idioms.si&zeof(\ \) sizeof()' exe "vnoremenu ".s:C_Root.'&Idioms.si&zeof(\ \) ssizeof()P' " exe "anoremenu ".s:C_Root.'&Idioms.asse&rt(\ \) oassert();' exe "vnoremenu ".s:C_Root.'&Idioms.asse&rt(\ \) sassert();F(p' exe "amenu ".s:C_Root.'&Idioms.-SEP5- :' exe "amenu ".s:C_Root.'&Idioms.open\ &input\ file :call C_InsertTemplate("idioms.open-input-file")' exe "amenu ".s:C_Root.'&Idioms.open\ &output\ file :call C_InsertTemplate("idioms.open-output-file")' exe "amenu ".s:C_Root.'&Idioms.fscanf :call C_InsertTemplate("idioms.fscanf")' exe "amenu ".s:C_Root.'&Idioms.fprintf :call C_InsertTemplate("idioms.fprintf")' " "=============================================================================================== "----- Menu : C-Preprocessor ---------------------------------------------- {{{2 "=============================================================================================== " if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'&Preprocessor.&PreprocessorC\/C\+\+ ' exe "amenu ".s:C_Root.'&Preprocessor.-Sep00- :' endif " "----- Submenu : C-Idioms: standard library ------------------------------------------------------- "' exe "amenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..Std\.Lib\.C\/C\+\+ ' exe "amenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..-Sep0- :' " exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&assert\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&ctype\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&errno\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&float\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&limits\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..l&ocale\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&math\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..set&jmp\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..s&ignal\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..stdar&g\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..st&ddef\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&stdio\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..stdli&b\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..st&ring\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&time\.h o#include' " exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.C99C\/C\+\+ ' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.-Sep0- :' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&complex\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&fenv\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&inttypes\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.is&o646\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&stdbool\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.s&tdint\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.tg&math\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&wchar\.h o#include' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.wct&ype\.h o#include' " exe "amenu ".s:C_Root.'&Preprocessor.-SEP2- :' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &\<\.\.\.\> o#include<>' exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &\"\.\.\.\" o#include""' exe "amenu ".s:C_Root.'&Preprocessor.#&define :call C_InsertTemplate("preprocessor.define")' exe "amenu ".s:C_Root.'&Preprocessor.&#undef :call C_InsertTemplate("preprocessor.undefine")' " exe "amenu ".s:C_Root.'&Preprocessor.#&if\ #else\ #endif :call C_InsertTemplate("preprocessor.if-else-endif")' exe "amenu ".s:C_Root.'&Preprocessor.#i&fdef\ #else\ #endif :call C_InsertTemplate("preprocessor.ifdef-else-endif")' exe "amenu ".s:C_Root.'&Preprocessor.#if&ndef\ #else\ #endif :call C_InsertTemplate("preprocessor.ifndef-else-endif")' exe "amenu ".s:C_Root.'&Preprocessor.#ifnd&ef\ #def\ #endif :call C_InsertTemplate("preprocessor.ifndef-def-endif")' exe "amenu ".s:C_Root.'&Preprocessor.#if\ &0\ #endif :call C_PPIf0("a")2ji' " exe "vmenu ".s:C_Root.'&Preprocessor.#&if\ #else\ #endif :call C_InsertTemplate("preprocessor.if-else-endif", "v")' exe "vmenu ".s:C_Root.'&Preprocessor.#i&fdef\ #else\ #endif :call C_InsertTemplate("preprocessor.ifdef-else-endif", "v")' exe "vmenu ".s:C_Root.'&Preprocessor.#if&ndef\ #else\ #endif :call C_InsertTemplate("preprocessor.ifndef-else-endif", "v")' exe "vmenu ".s:C_Root.'&Preprocessor.#ifnd&ef\ #def\ #endif :call C_InsertTemplate("preprocessor.ifndef-def-endif", "v")' exe "vmenu ".s:C_Root.'&Preprocessor.#if\ &0\ #endif :call C_PPIf0("v")' " exe "amenu ".s:C_Root.'&Preprocessor.&remove\ #if\ 0\ #endif :call C_PPIf0Remove()' " "=============================================================================================== "----- Menu : Snippets ---------------------------------------------------- {{{2 "=============================================================================================== " if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'S&nippets.S&nippetsC\/C\+\+ ' exe "amenu ".s:C_Root.'S&nippets.-Sep00- :' endif if s:C_CodeSnippets != "" exe "amenu ".s:C_Root.'S&nippets.&read\ code\ snippet :call C_CodeSnippet("r")' exe "amenu ".s:C_Root.'S&nippets.&write\ code\ snippet :call C_CodeSnippet("w")' exe "vmenu ".s:C_Root.'S&nippets.&write\ code\ snippet :call C_CodeSnippet("wv")' exe "amenu ".s:C_Root.'S&nippets.&edit\ code\ snippet :call C_CodeSnippet("e")' exe " menu ".s:C_Root.'S&nippets.-SEP1- :' endif exe " menu ".s:C_Root.'S&nippets.&pick\ up\ prototype :call C_ProtoPick("n")' exe "vmenu ".s:C_Root.'S&nippets.&pick\ up\ prototype :call C_ProtoPick("v")' exe " menu ".s:C_Root.'S&nippets.&insert\ prototype(s) :call C_ProtoInsert()' exe " menu ".s:C_Root.'S&nippets.&clear\ prototype(s) :call C_ProtoClear()' exe " menu ".s:C_Root.'S&nippets.&show\ prototype(s) :call C_ProtoShow()' " "=============================================================================================== "----- Menu : C++ --------------------------------------------------------- {{{2 "=============================================================================================== " if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'C&++.C&\+\+C\/C\+\+ ' exe "amenu ".s:C_Root.'C&++.-Sep00- :' endif exe " noremenu ".s:C_Root.'C&++.c&in ocin>> ;i' exe " noremenu ".s:C_Root.'C&++.cout\ &variable ocout<< << endl;2Focout<< "\n";2F"a' exe " noremenu ".s:C_Root.'C&++.<<\ &\"\" i<< "" ' " exe "inoremenu ".s:C_Root.'C&++.c&in cin>> ;i' exe "inoremenu ".s:C_Root.'C&++.cout\ &variable cout<< << endl;2F<< "\n";2F"a' exe "inoremenu ".s:C_Root.'C&++.<<\ &\"\" << "" ' " "----- Submenu : C++ : output manipulators ------------------------------------------------------- " exe "amenu ".s:C_Root.'C&++.&output\ manipulators.output\ manip\.C\/C\+\+ ' exe "amenu ".s:C_Root.'C&++.&output\ manipulators.-Sep0- :' " exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &boolalpha i<< boolalpha' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &dec i<< dec' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &endl i<< endl' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &fixed i<< fixed' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ fl&ush i<< flush' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &hex i<< hex' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &internal i<< internal' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &left i<< left' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &oct i<< oct' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &right i<< right' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ s&cientific i<< scientific' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &setbase\(\ \) i<< setbase(10) ' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ se&tfill\(\ \) i<< setfill() ' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ setiosfla&g\(\ \) i<< setiosflags() ' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&precision\(\ \) i<< setprecision(6) ' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&w\(\ \) i<< setw(0) ' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showb&ase i<< showbase' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpoi&nt i<< showpoint' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpos\ \(&1\) i<< showpos' exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ uppercase\ \(&2\) i<< uppercase' " exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &boolalpha << boolalpha' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &dec << dec' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &endl << endl' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &fixed << fixed' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ fl&ush << flush' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &hex << hex' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &internal << internal' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &left << left' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ o&ct << oct' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &right << right' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ s&cientific << scientific' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &setbase\(\ \) << setbase(10) ' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ se&tfill\(\ \) << setfill() ' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ setiosfla&g\(\ \) << setiosflags() ' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&precision\(\ \) << setprecision(6) ' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&w\(\ \) << setw(0) ' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showb&ase << showbase' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpoi&nt << showpoint' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpos\ \(&1\) << showpos' exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ uppercase\ \(&2\) << uppercase' " "----- Submenu : C++ : ios flag bits ------------------------------------------------------------- " exe "amenu ".s:C_Root.'C&++.ios\ flag&bits.ios\ flagsC\/C\+\+ ' exe "amenu ".s:C_Root.'C&++.ios\ flag&bits.-Sep0- :' " exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&adjustfield iios::adjustfield' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::bas&efield iios::basefield' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&boolalpha iios::boolalpha' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&dec iios::dec' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&fixed iios::fixed' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::floa&tfield iios::floatfield' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&hex iios::hex' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&internal iios::internal' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&left iios::left' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&oct iios::oct' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&right iios::right' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::s&cientific iios::scientific' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::sho&wbase iios::showbase' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::showpoint\ \(&1\) iios::showpoint' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::show&pos iios::showpos' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&skipws iios::skipws' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::u&nitbuf iios::unitbuf' exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&uppercase iios::uppercase' " exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&adjustfield ios::adjustfield' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::bas&efield ios::basefield' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&boolalpha ios::boolalpha' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&dec ios::dec' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&fixed ios::fixed' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::floa&tfield ios::floatfield' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&hex ios::hex' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&internal ios::internal' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&left ios::left' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&oct ios::oct' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&right ios::right' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::s&cientific ios::scientific' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::sho&wbase ios::showbase' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::showpoint\ \(&1\) ios::showpoint' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::show&pos ios::showpos' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&skipws ios::skipws' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::u&nitbuf ios::unitbuf' exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&uppercase ios::uppercase' " "----- Submenu : C++ library (algorithm - locale) ---------------------------------------------- " exe "amenu ".s:C_Root.'C&++.#include\ \ \(&1\).alg\.\.locC\/C\+\+ ' exe "amenu ".s:C_Root.'C&++.#include\ \ \(&1\).-Sep0- :' " exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&algorithm o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&bitset o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&complex o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&deque o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&exception o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&fstream o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).f&unctional o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).iomani&p o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&ios o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).iosf&wd o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).io&stream o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).istrea&m o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).iterato&r o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).&limits o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).lis&t o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&1\).l&ocale o#include' " "----- Submenu : C++ library (map - vector) ---------------------------------------------------- " exe "amenu ".s:C_Root.'C&++.#include\ \ \(&2\).map\.\.vecC\/C\+\+ ' exe "amenu ".s:C_Root.'C&++.#include\ \ \(&2\).-Sep0- :' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&map o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).memor&y o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&new o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).numeri&c o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&ostream o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&queue o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&set o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).sst&ream o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).st&ack o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).stde&xcept o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).stream&buf o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).str&ing o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&typeinfo o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&utility o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).&valarray o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&2\).v&ector o#include' " "----- Submenu : C library (cassert - ctime) ------------------------------------------------- " exe "amenu ".s:C_Root.'C&++.#include\ \ \(&3\).cXC\/C\+\+ ' exe "amenu ".s:C_Root.'C&++.#include\ \ \(&3\).-Sep0- :' " exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&assert o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&ctype o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&errno o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&float o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&limits o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).cl&ocale o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&math o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).cset&jmp o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).cs&ignal o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).cstdar&g o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).cst&ddef o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&stdio o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).cstdli&b o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).cst&ring o#include' exe "anoremenu ".s:C_Root.'C&++.#include\ \ \(&3\).c&time o#include' " "----- End Submenu : C library (cassert - ctime) --------------------------------------------- " exe "amenu ".s:C_Root.'C&++.-SEP2- :' exe "amenu ".s:C_Root.'C&++.&method\ implement\. :call C_InsertTemplate("cpp.method-implementation")' exe "amenu ".s:C_Root.'C&++.&class :call C_InsertTemplate("cpp.class")' exe "amenu ".s:C_Root.'C&++.class\ (w\.\ &new) :call C_InsertTemplate("cpp.class-using-new")' exe "amenu ".s:C_Root.'C&++.-SEP3- :' exe "amenu ".s:C_Root.'C&++.tem&pl\.\ method\ impl\. :call C_InsertTemplate("cpp.template-method-implementation")' exe "amenu ".s:C_Root.'C&++.&templ\.\ class :call C_InsertTemplate("cpp.template-class")' exe "amenu ".s:C_Root.'C&++.templ\.\ class\ (w\.\ ne&w) :call C_InsertTemplate("cpp.template-class-using-new")' exe "amenu ".s:C_Root.'C&++.-SEP31- :' exe "amenu ".s:C_Root.'C&++.templ\.\ &function :call C_InsertTemplate("cpp.template-function")' exe "amenu ".s:C_Root.'C&++.&error\ class :call C_InsertTemplate("cpp.error-class")' exe "amenu ".s:C_Root.'C&++.-SEP4- :' exe "amenu ".s:C_Root.'C&++.operator\ &<< :call C_InsertTemplate("cpp.operator-in")' exe "amenu ".s:C_Root.'C&++.operator\ &>> :call C_InsertTemplate("cpp.operator-out")' exe "amenu ".s:C_Root.'C&++.-SEP5- :' exe "amenu ".s:C_Root.'C&++.tr&y\ \.\.\ catch :call C_InsertTemplate("cpp.try-catch")' exe "vmenu ".s:C_Root.'C&++.tr&y\ \.\.\ catch :call C_InsertTemplate("cpp.try-catch", "v")' exe "amenu ".s:C_Root.'C&++.catc&h :call C_InsertTemplate("cpp.catch")' exe "vmenu ".s:C_Root.'C&++.catc&h :call C_InsertTemplate("cpp.catch", "v")' exe "amenu ".s:C_Root.'C&++.catch\(&\.\.\.\) :call C_InsertTemplate("cpp.catch-points")' exe "vmenu ".s:C_Root.'C&++.catch\(&\.\.\.\) :call C_InsertTemplate("cpp.catch-points", "v")' exe "amenu ".s:C_Root.'C&++.-SEP6- :' exe "amenu ".s:C_Root.'C&++.open\ input\ file\ \ \(&4\) :call C_InsertTemplate("cpp.open-input-file")' exe "amenu ".s:C_Root.'C&++.open\ output\ file\ \(&5\) :call C_InsertTemplate("cpp.open-output-file")' exe "amenu ".s:C_Root.'C&++.-SEP7- :' exe " menu ".s:C_Root.'C&++.&using\ namespace\ std; ousing namespace std;' exe " menu ".s:C_Root.'C&++.usin&g\ namespace\ ; ousing namespace ;$i' exe "amenu ".s:C_Root.'C&++.namespace\ &\{\ \} :call C_InsertTemplate("cpp.namespace")' exe "imenu ".s:C_Root.'C&++.&using\ namespace\ std; using namespace std;' exe "imenu ".s:C_Root.'C&++.usin&g\ namespace\ ; using namespace ;$i' exe "vmenu ".s:C_Root.'C&++.namespace\ &\{\ \} :call C_InsertTemplate("cpp.namespace", "v")' exe "amenu ".s:C_Root.'C&++.-SEP8- :' " "----- Submenu : RTTI ---------------------------------------------------------------------------- " exe "amenu ".s:C_Root.'C&++.&RTTI.RTTIC\/C\+\+ ' exe "amenu ".s:C_Root.'C&++.&RTTI.-Sep0- :' " exe " noremenu ".s:C_Root.'C&++.&RTTI.&typeid atypeid()hr(a' exe " noremenu ".s:C_Root.'C&++.&RTTI.&static_cast astatic_cast<>()' exe " noremenu ".s:C_Root.'C&++.&RTTI.&const_cast aconst_cast<>()' exe " noremenu ".s:C_Root.'C&++.&RTTI.&reinterpret_cast areinterpret_cast<>()' exe " noremenu ".s:C_Root.'C&++.&RTTI.&dynamic_cast adynamic_cast<>()' " exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&typeid stypeid()hr(p' exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&static_cast sstatic_cast<>()P' exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&const_cast sconst_cast<>()P' exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&reinterpret_cast sreinterpret_cast<>()P' exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&dynamic_cast sdynamic_cast<>()P' " exe "inoremenu ".s:C_Root.'C&++.&RTTI.&typeid typeid()hr(a' exe "inoremenu ".s:C_Root.'C&++.&RTTI.&static_cast static_cast<>()' exe "inoremenu ".s:C_Root.'C&++.&RTTI.&const_cast const_cast<>()' exe "inoremenu ".s:C_Root.'C&++.&RTTI.&reinterpret_cast reinterpret_cast<>()' exe "inoremenu ".s:C_Root.'C&++.&RTTI.&dynamic_cast dynamic_cast<>()' " "----- End Submenu : RTTI ------------------------------------------------------------------------ " exe "amenu ".s:C_Root.'C&++.e&xtern\ \"C\"\ \{\ \} :call C_InsertTemplate("cpp.extern")' exe "vmenu ".s:C_Root.'C&++.e&xtern\ \"C\"\ \{\ \} :call C_InsertTemplate("cpp.extern", "v")' " "=============================================================================================== "----- Menu : run ----- -------------------------------------------------- {{{2 "=============================================================================================== " if s:C_MenuHeader == 'yes' exe "amenu ".s:C_Root.'&Run.&RunC\/C\+\+ ' exe "amenu ".s:C_Root.'&Run.-Sep00- :' endif " exe "amenu ".s:C_Root.'&Run.save\ and\ &compile\ :call C_Compile():redraw:call C_HlMessage()' exe "amenu ".s:C_Root.'&Run.&link\ :call C_Link():redraw:call C_HlMessage()' exe "amenu ".s:C_Root.'&Run.&run\ :call C_Run()' exe "amenu ".s:C_Root.'&Run.cmd\.\ line\ &arg\.\ :call C_Arguments()' exe "amenu ".s:C_Root.'&Run.-SEP0- :' exe "amenu ".s:C_Root.'&Run.&make :call C_Make()' exe "amenu ".s:C_Root.'&Run.cmd\.\ line\ ar&g\.\ for\ make :call C_MakeArguments()' exe "amenu ".s:C_Root.'&Run.-SEP1- :' if s:C_SplintIsExecutable==1 exe "amenu ".s:C_Root.'&Run.s&plint :call C_SplintCheck():redraw:call C_HlMessage()' exe "amenu ".s:C_Root.'&Run.cmd\.\ line\ arg\.\ for\ spl&int :call C_SplintArguments()' exe "amenu ".s:C_Root.'&Run.-SEP2- :' endif " if s:C_CodeCheckIsExecutable==1 exe "amenu ".s:C_Root.'&Run.CodeChec&k :call C_CodeCheck():redraw:call C_HlMessage()' exe "amenu ".s:C_Root.'&Run.cmd\.\ line\ arg\.\ for\ Cod&eCheck :call C_CodeCheckArguments()' exe "amenu ".s:C_Root.'&Run.-SEP3- :' endif " exe "amenu ".s:C_Root.'&Run.in&dent :call C_Indent("a"):redraw:call C_HlMessage()' exe "vmenu ".s:C_Root.'&Run.in&dent :call C_Indent("v"):redraw:call C_HlMessage()' if s:MSWIN exe "amenu ".s:C_Root.'&Run.&hardcopy\ to\ printer :call C_Hardcopy("n")' exe "vmenu ".s:C_Root.'&Run.&hardcopy\ to\ printer :call C_Hardcopy("v")' else exe "amenu ".s:C_Root.'&Run.&hardcopy\ to\ FILENAME\.ps :call C_Hardcopy("n")' exe "vmenu ".s:C_Root.'&Run.&hardcopy\ to\ FILENAME\.ps :call C_Hardcopy("v")' endif exe "imenu ".s:C_Root.'&Run.-SEP4- :' exe "amenu ".s:C_Root.'&Run.rebuild\ &templates :call C_RebuildTemplates()' exe "amenu ".s:C_Root.'&Run.&settings :call C_Settings()' exe "imenu ".s:C_Root.'&Run.-SEP5- :' if !s:MSWIN exe "amenu ".s:C_Root.'&Run.&xterm\ size :call C_XtermSize()' endif if s:C_OutputGvim == "vim" exe "amenu ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm :call C_Toggle_Gvim_Xterm()' else if s:C_OutputGvim == "buffer" exe "amenu ".s:C_Root.'&Run.&output:\ BUFFER->xterm->vim :call C_Toggle_Gvim_Xterm()' else exe "amenu ".s:C_Root.'&Run.&output:\ XTERM->vim->buffer :call C_Toggle_Gvim_Xterm()' endif endif " "=============================================================================================== "----- Menu : help ------------------------------------------------------- {{{2 "=============================================================================================== " if s:C_Root != "" exe "menu ".s:C_Root.'&help\ \(plugin\) :call C_HelpCsupport()' endif endfunction " ---------- end of function C_InitMenus ---------- " "=============================================================================================== "----- Menu Functions -------------------------------------------------------------------------- "=============================================================================================== " "------------------------------------------------------------------------------ " C_Input: Input after a highlighted prompt {{{1 "------------------------------------------------------------------------------ function! C_Input ( promp, text ) echohl Search " highlight prompt call inputsave() " preserve typeahead let retval=input( a:promp, a:text ) " read input call inputrestore() " restore typeahead echohl None " reset highlighting let retval = substitute( retval, '^\s\+', "", "" ) " remove leading whitespaces let retval = substitute( retval, '\s\+$', "", "" ) " remove trailing whitespaces return retval endfunction " ---------- end of function C_Input ---------- " "------------------------------------------------------------------------------ " C_AdjustLineEndComm: adjust line-end comments {{{1 "------------------------------------------------------------------------------ function! C_AdjustLineEndComm ( mode ) range " if !exists("b:C_LineEndCommentColumn") let b:C_LineEndCommentColumn = s:C_LineEndCommColDefault endif let save_cursor = getpos(".") let save_expandtab = &expandtab exe ":set expandtab" if a:mode == 'v' let pos0 = line("'<") let pos1 = line("'>") else let pos0 = line(".") let pos1 = pos0 endif let linenumber = pos0 exe ":".pos0 while linenumber <= pos1 let line= getline(".") " look for a C comment let idx1 = 1 + match( line, '\s*\/\*.\{-}\*\/' ) let idx2 = 1 + match( line, '\/\*.\{-}\*\/' ) if idx2 == 0 " look for a C++ comment let idx1 = 1 + match( line, '\s*\/\/.*$' ) let idx2 = 1 + match( line, '\/\/.*$' ) endif let ln = line(".") call setpos(".", [ 0, ln, idx1, 0 ] ) let vpos1 = virtcol(".") call setpos(".", [ 0, ln, idx2, 0 ] ) let vpos2 = virtcol(".") if ! ( vpos2 == b:C_LineEndCommentColumn \ || vpos1 > b:C_LineEndCommentColumn \ || idx2 == 0 ) exe ":.,.retab" " insert some spaces if vpos2 < b:C_LineEndCommentColumn let diff = b:C_LineEndCommentColumn-vpos2 call setpos(".", [ 0, ln, vpos2, 0 ] ) let @" = ' ' exe "normal ".diff."P" endif " remove some spaces if vpos1 < b:C_LineEndCommentColumn && vpos2 > b:C_LineEndCommentColumn let diff = vpos2 - b:C_LineEndCommentColumn call setpos(".", [ 0, ln, b:C_LineEndCommentColumn, 0 ] ) exe "normal ".diff."x" endif endif let linenumber=linenumber+1 normal j endwhile " restore tab expansion settings and cursor position let &expandtab = save_expandtab call setpos('.', save_cursor) endfunction " ---------- end of function C_AdjustLineEndComm ---------- " "------------------------------------------------------------------------------ " C_GetLineEndCommCol: get line-end comment position {{{1 "------------------------------------------------------------------------------ function! C_GetLineEndCommCol () let actcol = virtcol(".") if actcol+1 == virtcol("$") let b:C_LineEndCommentColumn = C_Input( 'start line-end comment at virtual column : ', actcol ) else let b:C_LineEndCommentColumn = virtcol(".") endif echomsg "line end comments will start at column ".b:C_LineEndCommentColumn endfunction " ---------- end of function C_GetLineEndCommCol ---------- " "------------------------------------------------------------------------------ " C_LineEndComment: single line-end comment {{{1 "------------------------------------------------------------------------------ function! C_LineEndComment ( ) if !exists("b:C_LineEndCommentColumn") let b:C_LineEndCommentColumn = s:C_LineEndCommColDefault endif " ----- trim whitespaces ----- exe 's/\s*$//' let linelength= virtcol("$") - 1 if linelength < b:C_LineEndCommentColumn let diff = b:C_LineEndCommentColumn -1 -linelength exe "normal ".diff."A " endif " append at least one blank if linelength >= b:C_LineEndCommentColumn exe "normal A " endif call C_InsertTemplate('comment.end-of-line-comment') endfunction " ---------- end of function C_LineEndComment ---------- " "------------------------------------------------------------------------------ " C_MultiLineEndComments: multi line-end comments {{{1 "------------------------------------------------------------------------------ function! C_MultiLineEndComments ( ) " if !exists("b:C_LineEndCommentColumn") let b:C_LineEndCommentColumn = s:C_LineEndCommColDefault endif " let pos0 = line("'<") let pos1 = line("'>") " " ----- trim whitespaces ----- exe pos0.','.pos1.'s/\s*$//' " " ----- find the longest line ----- let maxlength = 0 let linenumber = pos0 normal '< while linenumber <= pos1 if getline(".") !~ "^\\s*$" && maxlength 0 exe "normal ".diff."k" end endfunction " ---------- end of function C_MultiLineEndComments ---------- " "------------------------------------------------------------------------------ " C_CommentSpecial : special comments {{{1 "------------------------------------------------------------------------------ function! C_CommentSpecial (special) put = ' '.s:C_Com1.' '.a:special.' '.s:C_Com2 endfunction " ---------- end of function C_CommentSpecial ---------- " "------------------------------------------------------------------------------ " C_Comment_C_SectionAll: Section Comments {{{1 "------------------------------------------------------------------------------ " function! C_Comment_C_SectionAll ( type ) call C_InsertTemplate("comment.file-section-cpp-header-includes") call C_InsertTemplate("comment.file-section-cpp-macros") call C_InsertTemplate("comment.file-section-cpp-typedefs") call C_InsertTemplate("comment.file-section-cpp-data-types") if a:type=="cpp" call C_InsertTemplate("comment.file-section-cpp-class-defs") endif call C_InsertTemplate("comment.file-section-cpp-local-variables") call C_InsertTemplate("comment.file-section-cpp-prototypes") call C_InsertTemplate("comment.file-section-cpp-function-defs-exported") call C_InsertTemplate("comment.file-section-cpp-function-defs-local") if a:type=="cpp" call C_InsertTemplate("comment.file-section-cpp-class-implementations-exported") call C_InsertTemplate("comment.file-section-cpp-class-implementations-local") endif endfunction " ---------- end of function C_Comment_C_SectionAll ---------- " function! C_Comment_H_SectionAll ( type ) call C_InsertTemplate("comment.file-section-hpp-header-includes") call C_InsertTemplate("comment.file-section-hpp-macros") call C_InsertTemplate("comment.file-section-hpp-exported-typedefs") call C_InsertTemplate("comment.file-section-hpp-exported-data-types") if a:type=="cpp" call C_InsertTemplate("comment.file-section-hpp-exported-class-defs") endif call C_InsertTemplate("comment.file-section-hpp-exported-variables") call C_InsertTemplate("comment.file-section-hpp-exported-function-declarations") endfunction " ---------- end of function C_Comment_H_SectionAll ---------- " "---------------------------------------------------------------------- " C_CodeComment : Code -> Comment {{{1 "---------------------------------------------------------------------- function! C_CodeComment( mode, style ) if a:mode=="a" if a:style == 'yes' silent exe ":s#^#/\* #" silent put = ' */' else silent exe ":s#^#//#" endif endif if a:mode=="v" if a:style == 'yes' silent exe ":'<,'>s/^/ \* /" silent exe ":'< s'^ '\/'" silent exe ":'>" silent put = ' */' else silent exe ":'<,'>s#^#//#" endif endif endfunction " ---------- end of function C_CodeComment ---------- " "---------------------------------------------------------------------- " C_StartMultilineComment : Comment -> Code {{{1 "---------------------------------------------------------------------- let s:C_StartMultilineComment = '^\s*\/\*[\*! ]\=' function! C_RemoveCComment( start, end ) if a:end-a:start<1 return 0 " lines removed endif " " Is the C-comment complete ? Get length. " let check = getline( a:start ) =~ s:C_StartMultilineComment let linenumber = a:start+1 while linenumber < a:end && getline( linenumber ) !~ '^\s*\*\/' let check = check && getline( linenumber ) =~ '^\s*\*[ ]\=' let linenumber = linenumber+1 endwhile let check = check && getline( linenumber ) =~ '^\s*\*\/' " " remove a complete comment " if check exe "silent :".a:start.' s/'.s:C_StartMultilineComment.'//' let linenumber1 = a:start+1 while linenumber1 < linenumber exe "silent :".linenumber1.' s/^\s*\*[ ]\=//' let linenumber1 = linenumber1+1 endwhile exe "silent :".linenumber1.' s/^\s*\*\///' endif return linenumber-a:start+1 " lines removed endfunction " ---------- end of function C_RemoveCComment ---------- " "---------------------------------------------------------------------- " C_CommentCode : Comment -> Code {{{1 "---------------------------------------------------------------------- function! C_CommentCode(mode) if a:mode=="a" let pos1 = line(".") let pos2 = pos1 endif if a:mode=="v" let pos1 = line("'<") let pos2 = line("'>") endif let removed = 0 " let linenumber=pos1 while linenumber <= pos2 " Do we have a C++ comment ? if getline( linenumber ) =~ '^\s*//' exe "silent :".linenumber.' s#^\s*//##' let removed = 1 endif " Do we have a C comment ? if removed == 0 && getline( linenumber ) =~ s:C_StartMultilineComment let removed = C_RemoveCComment(linenumber,pos2) endif if removed!=0 let linenumber = linenumber+removed let removed = 0 else let linenumber = linenumber+1 endif endwhile endfunction " ---------- end of function C_CommentCode ---------- " "---------------------------------------------------------------------- " C_CommentCppToC : C++ Comment -> C Comment {{{1 " Removes trailing whitespaces. "---------------------------------------------------------------------- function! C_CommentCppToC() silent! exe ':s#\/\/\s*\(.*\)\s*$#/* \1 */#' endfunction " ---------- end of function C_CommentCppToC ---------- " "---------------------------------------------------------------------- " C_CommentCToCpp : C Comment -> C++ Comment {{{1 " Changes the first comment in case of multiple comments: " xxxx; /* */ /* */ " xxxx; // /* */ " Removes trailing whitespaces. "---------------------------------------------------------------------- function! C_CommentCToCpp() silent! exe ':s!\/\*\s*\(.\{-}\)\*\/!\/\/ \1!' silent! exe ':s!\s*$!!' endfunction " ---------- end of function C_CommentCToCpp ---------- " "===================================================================================== "----- Menu : Statements ----------------------------------------------------------- "===================================================================================== " "------------------------------------------------------------------------------ " C_PPIf0 : #if 0 .. #endif {{{1 "------------------------------------------------------------------------------ function! C_PPIf0 (mode) " let s:C_If0_Counter = 0 let save_line = line(".") let actual_line = 0 " " search for the maximum option number (if any) " normal gg while actual_line < search( s:C_If0_Txt."\\d\\+" ) let actual_line = line(".") let actual_opt = matchstr( getline(actual_line), s:C_If0_Txt."\\d\\+" ) let actual_opt = strpart( actual_opt, strlen(s:C_If0_Txt),strlen(actual_opt)-strlen(s:C_If0_Txt)) if s:C_If0_Counter < actual_opt let s:C_If0_Counter = actual_opt endif endwhile let s:C_If0_Counter = s:C_If0_Counter+1 silent exe ":".save_line " if a:mode=='a' let zz= "\n#if 0 ".s:C_Com1." ----- #if 0 : ".s:C_If0_Txt.s:C_If0_Counter." ----- ".s:C_Com2."\n" let zz= zz."\n#endif ".s:C_Com1." ----- #if 0 : ".s:C_If0_Txt.s:C_If0_Counter." ----- ".s:C_Com2."\n\n" put =zz if v:version >= 700 normal 4k endif endif if a:mode=='v' let zz= "\n#if 0 ".s:C_Com1." ----- #if 0 : ".s:C_If0_Txt.s:C_If0_Counter." ----- ".s:C_Com2."\n" :'put =zz :normal '< endif endfunction " ---------- end of function C_PPIf0 ---------- " "------------------------------------------------------------------------------ " C_PPIf0Remove : remove #if 0 .. #endif {{{1 "------------------------------------------------------------------------------ function! C_PPIf0Remove () let frstline = searchpair( '^\s*#if\s\+0', '', '^\s*#endif\>.\+\.\+\=0 && match( l:snippetfile, '\.\(ni\|noindent\)$' ) < 0 endif endif if line(".")==2 && getline(1)=~"^$" silent exe ":1,1d" endif endif " " update current buffer / split window / edit snippet file " if a:mode == "e" if has("gui_running") let l:snippetfile = browse(0,"edit a code snippet",s:C_CodeSnippets,"") else let l:snippetfile=input("edit snippet ", s:C_CodeSnippets, "file" ) end if l:snippetfile != "" :execute "update! | split | edit ".l:snippetfile endif endif " " write whole buffer into snippet file " if a:mode == "w" || a:mode == "wv" if has("gui_running") let l:snippetfile = browse(0,"edit a code snippet",s:C_CodeSnippets,"") else let l:snippetfile=input("edit snippet ", s:C_CodeSnippets, "file" ) end if l:snippetfile != "" if filereadable(l:snippetfile) if confirm("File ".l:snippetfile." exists ! Overwrite ? ", "&Cancel\n&No\n&Yes") != 3 return endif endif if a:mode == "w" :execute ":write! ".l:snippetfile else :execute ":*write! ".l:snippetfile end endif endif else echo "code snippet directory ".s:C_CodeSnippets." does not exist (please create it)" endif endfunction " ---------- end of function C_CodeSnippets ---------- " "------------------------------------------------------------------------------ " C_CodeFor : for (idiom) {{{1 "------------------------------------------------------------------------------ function! C_CodeFor( direction, mode ) if a:direction=="up" let string = C_Input( " loop var. [ start [ end [ incr. ]]] : ", "" ) else let string = C_Input( " loop var. [ start [ end [ decr. ]]] : ", "" ) endif let pos = 0 let jmp = 0 if string != "" " " use internal formatting to avoid conficts when using == below let equalprg_save = &equalprg set equalprg= " " loop variable let loopvar = matchstr( string, '\S\+\s*', pos ) let pos = pos + strlen(loopvar) let loopvar = substitute( loopvar, '\s*$', "", "" ) " " start value let startval = matchstr( string, '\S\+\s*', pos ) let pos = pos + strlen(startval) let startval = substitute( startval, '\s*$', "", "" ) " end value let endval = matchstr( string, '\S\+\s*', pos ) let pos = pos + strlen(endval) let endval = substitute( endval, '\s*$', "", "" ) " increment let incval = matchstr( string, '\S\+\s*', pos ) let pos = pos + strlen(incval) let incval = substitute( incval, '\s*$', "", "" ) if incval=="" let incval = '1' let jmp = 10 endif if a:direction=="up" if endval=="" let endval = 'n' let jmp = 7 endif if startval=="" let startval = '0' let jmp = 4 endif let zz= "for ( ".loopvar." = ".startval."; ".loopvar." < ".endval."; ".loopvar." += ".incval." )" else if endval=="" let endval = '0' let jmp = 7 endif if startval=="" let startval = 'n-1' let jmp = 4 endif let zz= "for ( ".loopvar." = ".startval."; ".loopvar." >= ".endval."; ".loopvar." -= ".incval." )" endif " ----- normal mode ---------------- if a:mode=="a" put =zz normal 2== if jmp!=0 exe "normal ".jmp."Wh" else exe 'normal $' endif endif " ----- visual mode ---------------- if a:mode=="v" let zz = zz." {" :'put =zz :'<-1 :exe "normal =".(line("'>")-line(".")+3)."+" endif " " restore formatter programm let &equalprg = equalprg_save " endif endfunction " ---------- end of function C_CodeFor ---------- " "------------------------------------------------------------------------------ " Handle prototypes {{{1 "------------------------------------------------------------------------------ " let s:C_Prototype = [] let s:C_PrototypeShow = [] let s:C_PrototypeCounter = 0 let s:C_CComment = '\/\*.\{-}\*\/\s*' " C comment with trailing whitespaces " '.\{-}' any character, non-greedy let s:C_CppComment = '\/\/.*$' " C++ comment " "------------------------------------------------------------------------------ " C_ProtoPick : pick up (normal/visual) {{{1 "------------------------------------------------------------------------------ function! C_ProtoPick (mode) if a:mode=="n" " --- normal mode ------------------- let pos1 = line(".") let pos2 = pos1 else " --- visual mode ------------------- let pos1 = line("'<") let pos2 = line("'>") endif " " remove C/C++-comments, leading and trailing whitespaces, squeeze whitespaces " let prototyp = '' let linenumber = pos1 while linenumber <= pos2 let newline = getline(linenumber) let newline = substitute( newline, s:C_CppComment, "", "" ) " remove C++ comment let prototyp = prototyp." ".newline let linenumber = linenumber+1 endwhile " let prototyp = substitute( prototyp, '^\s\+', "", "" ) " remove leading whitespaces let prototyp = substitute( prototyp, s:C_CComment, "", "g" ) " remove (multiline) C comments let prototyp = substitute( prototyp, '\s\+', " ", "g" ) " squeeze whitespaces let prototyp = substitute( prototyp, '\s\+$', "", "" ) " remove trailing whitespaces " " remove template keyword " let prototyp = substitute( prototyp, '^template\s*<\s*class \w\+\s*>\s*', "", "" ) " let parlist = stridx( prototyp, '(' ) " start of the parameter list let part1 = strpart( prototyp, 0, parlist ) let part2 = strpart( prototyp, parlist ) " " remove the scope res. operator " let part1 = substitute( part1, '<\s*\w\+\s*>', "", "g" ) let part1 = substitute( part1, '\ 0 let s:C_Prototype = [] let s:C_PrototypeShow = [] let s:C_PrototypeCounter = 0 echo 'prototypes deleted' else echo "currently no prototypes available" endif endfunction " --------- end of function C_ProtoClear ---------- " "------------------------------------------------------------------------------ " C_ProtoShow : show {{{1 "------------------------------------------------------------------------------ function! C_ProtoShow () if s:C_PrototypeCounter > 0 for protytype in s:C_PrototypeShow echo protytype endfor else echo "currently no prototypes available" endif endfunction " --------- end of function C_ProtoShow ---------- " "------------------------------------------------------------------------------ " C_EscapeBlanks : C_EscapeBlanks {{{1 "------------------------------------------------------------------------------ function! C_EscapeBlanks (arg) return substitute( a:arg, " ", "\\ ", "g" ) endfunction " --------- end of function C_EscapeBlanks ---------- " "------------------------------------------------------------------------------ " C_Compile : C_Compile {{{1 "------------------------------------------------------------------------------ " The standard make program 'make' called by vim is set to the C or C++ compiler " and reset after the compilation (set makeprg=... ). " The errorfile created by the compiler will now be read by gvim and " the commands cl, cp, cn, ... can be used. "------------------------------------------------------------------------------ function! C_Compile () let l:currentbuffer = bufname("%") let s:C_HlMessage = "" exe ":cclose" let Sou = expand("%:p") " name of the file in the current buffer let Obj = expand("%:p:r").s:C_ObjExtension " name of the object let SouEsc= escape( Sou, s:escfilename ) let ObjEsc= escape( Obj, s:escfilename ) " update : write source file if necessary exe ":update" " compilation if object does not exist or object exists and is older then the source if !filereadable(Obj) || (filereadable(Obj) && (getftime(Obj) < getftime(Sou))) " &makeprg can be a string containing blanks let makeprg_saved='"'.&makeprg.'"' if expand("%:e") == s:C_CExtension exe "set makeprg=".s:C_CCompiler else exe "set makeprg=".s:C_CplusCompiler endif " " COMPILATION " if s:MSWIN exe "make ".s:C_CFlags." \"".SouEsc."\" -o \"".ObjEsc."\"" else exe "make ".s:C_CFlags." ".SouEsc." -o ".ObjEsc endif exe "set makeprg=".makeprg_saved " " open error window if necessary exe ":botright cwindow" else let s:C_HlMessage = " '".Obj."' is up to date " endif endfunction " ---------- end of function C_Compile ---------- " "------------------------------------------------------------------------------ " C_Link : C_Link {{{1 "------------------------------------------------------------------------------ " The standard make program which is used by gvim is set to the compiler " (for linking) and reset after linking. " " calls: C_Compile "------------------------------------------------------------------------------ function! C_Link () call C_Compile() let s:C_HlMessage = "" let Sou = expand("%:p") " name of the file in the current buffer let Obj = expand("%:p:r").s:C_ObjExtension " name of the object file let Exe = expand("%:p:r").s:C_ExeExtension " name of the executable let ObjEsc= escape( Obj, s:escfilename ) let ExeEsc= escape( Exe, s:escfilename ) " no linkage if: " executable exists " object exists " source exists " executable newer then object " object newer then source if filereadable(Exe) && \ filereadable(Obj) && \ filereadable(Sou) && \ (getftime(Exe) >= getftime(Obj)) && \ (getftime(Obj) >= getftime(Sou)) let s:C_HlMessage = " '".Exe."' is up to date " return endif " linkage if: " object exists " source exists " object newer then source if filereadable(Obj) && (getftime(Obj) >= getftime(Sou)) let makeprg_saved='"'.&makeprg.'"' if expand("%:e") == s:C_CExtension exe "set makeprg=".s:C_CCompiler else exe "set makeprg=".s:C_CplusCompiler endif let v:statusmsg="" if s:MSWIN silent exe "make ".s:C_LFlags." ".s:C_Libs." -o \"".ExeEsc."\" \"".ObjEsc."\"" else silent exe "make ".s:C_LFlags." ".s:C_Libs." -o ".ExeEsc." ".ObjEsc endif if v:statusmsg != "" let s:C_HlMessage = v:statusmsg endif exe "set makeprg=".makeprg_saved endif endfunction " ---------- end of function C_Link ---------- " "------------------------------------------------------------------------------ " C_Run : C_Run {{{1 " calls: C_Link "------------------------------------------------------------------------------ " let s:C_OutputBufferName = "C-Output" let s:C_OutputBufferNumber = -1 " function! C_Run () " let Sou = expand("%:p") " name of the source file let Obj = expand("%:p:r").s:C_ObjExtension " name of the object file let Exe = expand("%:p:r").s:C_ExeExtension " name of the executable let ExeEsc = escape( Exe, s:escfilename ) " name of the executable, escaped " let l:arguments = exists("b:C_CmdLineArgs") ? b:C_CmdLineArgs : '' " let l:currentbuffer = bufname("%") " "============================================================================== " run : run from the vim command line "============================================================================== if s:C_OutputGvim == "vim" " silent call C_Link() " if executable(Exe) && getftime(Exe) >= getftime(Obj) && getftime(Obj) >= getftime(Sou) if s:MSWIN exe "!\"".ExeEsc."\" ".l:arguments else exe "!".ExeEsc." ".l:arguments endif else echomsg "file ".Exe." does not exist / is not executable" endif endif " "============================================================================== " run : redirect output to an output buffer "============================================================================== if s:C_OutputGvim == "buffer" let l:currentbuffernr = bufnr("%") " silent call C_Link() " if l:currentbuffer == bufname("%") " " if bufloaded(s:C_OutputBufferName) != 0 && bufwinnr(s:C_OutputBufferNumber)!=-1 exe bufwinnr(s:C_OutputBufferNumber) . "wincmd w" " buffer number may have changed, e.g. after a 'save as' if bufnr("%") != s:C_OutputBufferNumber let s:C_OutputBufferNumber = bufnr(s:C_OutputBufferName) exe ":bn ".s:C_OutputBufferNumber endif else silent exe ":new ".s:C_OutputBufferName let s:C_OutputBufferNumber=bufnr("%") setlocal buftype=nofile setlocal noswapfile setlocal syntax=none setlocal bufhidden=delete setlocal tabstop=8 endif " " run programm " setlocal modifiable if executable(Exe) && getftime(Exe) >= getftime(Obj) && getftime(Obj) >= getftime(Sou) if s:MSWIN exe "%!\"".ExeEsc."\" ".l:arguments else exe "%!".ExeEsc." ".l:arguments endif endif setlocal nomodifiable " if winheight(winnr()) >= line("$") exe bufwinnr(l:currentbuffernr) . "wincmd w" endif " endif endif " "============================================================================== " run : run in a detached xterm (not available for MS Windows) "============================================================================== if s:C_OutputGvim == "xterm" " silent call C_Link() " if executable(Exe) && getftime(Exe) >= getftime(Obj) && getftime(Obj) >= getftime(Sou) if s:MSWIN exe "!\"".ExeEsc."\" ".l:arguments else silent exe '!xterm -title '.ExeEsc.' '.s:C_XtermDefaults.' -e '.s:C_Wrapper.' '.ExeEsc.' '.l:arguments.' &' :redraw! endif endif endif endfunction " ---------- end of function C_Run ---------- " "------------------------------------------------------------------------------ " C_Arguments : Arguments for the executable {{{1 "------------------------------------------------------------------------------ function! C_Arguments () let Exe = expand("%:r").s:C_ExeExtension if Exe == "" redraw echohl WarningMsg | echo " no file name " | echohl None return endif let prompt = 'command line arguments for "'.Exe.'" : ' if exists("b:C_CmdLineArgs") let b:C_CmdLineArgs= C_Input( prompt, b:C_CmdLineArgs ) else let b:C_CmdLineArgs= C_Input( prompt , "" ) endif endfunction " ---------- end of function C_Arguments ---------- " "---------------------------------------------------------------------- " C_Toggle_Gvim_Xterm : change output destination {{{1 "---------------------------------------------------------------------- function! C_Toggle_Gvim_Xterm () if s:C_OutputGvim == "vim" if has("gui_running") exe "aunmenu ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm' exe "amenu ".s:C_Root.'&Run.&output:\ BUFFER->xterm->vim :call C_Toggle_Gvim_Xterm()' endif let s:C_OutputGvim = "buffer" else if s:C_OutputGvim == "buffer" if has("gui_running") exe "aunmenu ".s:C_Root.'&Run.&output:\ BUFFER->xterm->vim' if (!s:MSWIN) exe "amenu ".s:C_Root.'&Run.&output:\ XTERM->vim->buffer :call C_Toggle_Gvim_Xterm()' else exe "amenu ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm :call C_Toggle_Gvim_Xterm()' endif endif if (!s:MSWIN) && (s:C_Display != '') let s:C_OutputGvim = "xterm" else let s:C_OutputGvim = "vim" end else " ---------- output : xterm -> gvim if has("gui_running") exe "aunmenu ".s:C_Root.'&Run.&output:\ XTERM->vim->buffer' exe "amenu ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm :call C_Toggle_Gvim_Xterm()' endif let s:C_OutputGvim = "vim" endif endif echomsg "output destination is '".s:C_OutputGvim."'" endfunction " ---------- end of function C_Toggle_Gvim_Xterm ---------- " "------------------------------------------------------------------------------ " C_XtermSize : xterm geometry {{{1 "------------------------------------------------------------------------------ function! C_XtermSize () let regex = '-geometry\s\+\d\+x\d\+' let geom = matchstr( s:C_XtermDefaults, regex ) let geom = matchstr( geom, '\d\+x\d\+' ) let geom = substitute( geom, 'x', ' ', "" ) let answer= C_Input(" xterm size (COLUMNS LINES) : ", geom ) while match(answer, '^\s*\d\+\s\+\d\+\s*$' ) < 0 let answer= C_Input(" + xterm size (COLUMNS LINES) : ", geom ) endwhile let answer = substitute( answer, '\s\+', "x", "" ) " replace inner whitespaces let s:C_XtermDefaults = substitute( s:C_XtermDefaults, regex, "-geometry ".answer , "" ) endfunction " ---------- end of function C_XtermSize ---------- " "------------------------------------------------------------------------------ " C_MakeArguments : run make(1) {{{1 "------------------------------------------------------------------------------ let s:C_MakeCmdLineArgs = "" " command line arguments for Run-make; initially empty function! C_MakeArguments () let s:C_MakeCmdLineArgs= C_Input("make command line arguments : ",s:C_MakeCmdLineArgs) endfunction " ---------- end of function C_MakeArguments ---------- " function! C_Make() " update : write source file if necessary exe ":update" " run make exe ":!make ".s:C_MakeCmdLineArgs endfunction " ---------- end of function C_Make ---------- " "------------------------------------------------------------------------------ " C_SplintArguments : splint command line arguments {{{1 "------------------------------------------------------------------------------ function! C_SplintArguments () if s:C_SplintIsExecutable==0 let s:C_HlMessage = ' Splint is not executable or not installed! ' else let prompt = 'Splint command line arguments for "'.expand("%").'" : ' if exists("b:C_SplintCmdLineArgs") let b:C_SplintCmdLineArgs= C_Input( prompt, b:C_SplintCmdLineArgs ) else let b:C_SplintCmdLineArgs= C_Input( prompt , "" ) endif endif endfunction " ---------- end of function C_SplintArguments ---------- " "------------------------------------------------------------------------------ " C_SplintCheck : run splint(1) {{{1 "------------------------------------------------------------------------------ function! C_SplintCheck () if s:C_SplintIsExecutable==0 let s:C_HlMessage = ' Splint is not executable or not installed! ' return endif let l:currentbuffer=bufname("%") if &filetype != "c" && &filetype != "cpp" let s:C_HlMessage = ' "'.l:currentbuffer.'" seems not to be a C/C++ file ' return endif let s:C_HlMessage = "" exe ":cclose" silent exe ":update" let makeprg_saved='"'.&makeprg.'"' " Windows seems to need this: if s:MSWIN :compiler splint endif :set makeprg=splint " let l:arguments = exists("b:C_SplintCmdLineArgs") ? b:C_SplintCmdLineArgs : ' ' silent exe "make ".l:arguments." ".escape(l:currentbuffer,s:escfilename) exe "set makeprg=".makeprg_saved exe ":botright cwindow" " " message in case of success " if l:currentbuffer == bufname("%") let s:C_HlMessage = " Splint --- no warnings for : ".l:currentbuffer endif endfunction " ---------- end of function C_SplintCheck ---------- " "------------------------------------------------------------------------------ " C_CodeCheckArguments : CodeCheck command line arguments {{{1 "------------------------------------------------------------------------------ function! C_CodeCheckArguments () if s:C_CodeCheckIsExecutable==0 let s:C_HlMessage = ' CodeCheck is not executable or not installed! ' else let prompt = 'CodeCheck command line arguments for "'.expand("%").'" : ' if exists("b:C_CodeCheckCmdLineArgs") let b:C_CodeCheckCmdLineArgs= C_Input( prompt, b:C_CodeCheckCmdLineArgs ) else let b:C_CodeCheckCmdLineArgs= C_Input( prompt , s:C_CodeCheckOptions ) endif endif endfunction " ---------- end of function C_CodeCheckArguments ---------- " "------------------------------------------------------------------------------ " C_CodeCheck : run CodeCheck {{{1 "------------------------------------------------------------------------------ function! C_CodeCheck () if s:C_CodeCheckIsExecutable==0 let s:C_HlMessage = ' CodeCheck is not executable or not installed! ' return endif let l:currentbuffer=bufname("%") if &filetype != "c" && &filetype != "cpp" let s:C_HlMessage = ' "'.l:currentbuffer.'" seems not to be a C/C++ file ' return endif let s:C_HlMessage = "" exe ":cclose" silent exe ":update" let makeprg_saved='"'.&makeprg.'"' exe "set makeprg=".s:C_CodeCheckExeName " " match the splint error messages (quickfix commands) " ignore any lines that didn't match one of the patterns " :setlocal errorformat=%f(%l)%m " let l:arguments = exists("b:C_CodeCheckCmdLineArgs") ? b:C_CodeCheckCmdLineArgs : "" if l:arguments == "" let l:arguments = s:C_CodeCheckOptions endif exe ":make ".l:arguments." ".escape( l:currentbuffer, s:escfilename ) exe ':setlocal errorformat=' exe "set makeprg=".makeprg_saved exe ":botright cwindow" " " message in case of success " if l:currentbuffer == bufname("%") let s:C_HlMessage = " CodeCheck --- no warnings for : ".l:currentbuffer endif endfunction " ---------- end of function C_CodeCheck ---------- " "------------------------------------------------------------------------------ " C_Indent : run indent(1) {{{1 "------------------------------------------------------------------------------ " function! C_Indent ( mode ) if !executable("indent") let s:C_HlMessage = ' indent is not executable or not installed! ' return endif let l:currentbuffer=bufname("%") if &filetype != "c" && &filetype != "cpp" let s:C_HlMessage = ' "'.l:currentbuffer.'" seems not to be a C/C++ file ' return endif let s:C_HlMessage = "" if a:mode=="a" if C_Input("indent whole file [y/n/Esc] : ", "y" ) != "y" return endif exe ":update" if has("MSWIN") silent exe ":%!indent" else silent exe ":%!indent 2> ".s:C_IndentErrorLog endif let s:C_HlMessage = ' File "'.l:currentbuffer.'" reformatted.' endif if a:mode=="v" if has("MSWIN") silent exe ":'<,'>!indent" else silent exe ":'<,'>!indent 2> ".s:C_IndentErrorLog endif let s:C_HlMessage = ' File "'.l:currentbuffer.'" (lines '.line("'<").'-'.line("'>").') reformatted. ' endif if v:shell_error != 0 let s:C_HlMessage = ' Indent reported an error when processing file "'.l:currentbuffer.'". ' endif endfunction " ---------- end of function C_Indent ---------- " "------------------------------------------------------------------------------ " C_HlMessage : indent message {{{1 "------------------------------------------------------------------------------ function! C_HlMessage () echohl Search echo s:C_HlMessage echohl None endfunction " ---------- end of function C_HlMessage ---------- " "------------------------------------------------------------------------------ " C_Settings : settings {{{1 "------------------------------------------------------------------------------ function! C_Settings () let txt = " C/C++-Support settings\n\n" let txt = txt.' author : "'.s:C_Macro['|AUTHOR|']."\"\n" let txt = txt.' initials : "'.s:C_Macro['|AUTHORREF|']."\"\n" let txt = txt.' email : "'.s:C_Macro['|EMAIL|']."\"\n" let txt = txt.' company : "'.s:C_Macro['|COMPANY|']."\"\n" let txt = txt.' project : "'.s:C_Macro['|PROJECT|']."\"\n" let txt = txt.' copyright holder : "'.s:C_Macro['|COPYRIGHTHOLDER|']."\"\n" let txt = txt.' C / C++ compiler : '.s:C_CCompiler.' / '.s:C_CplusCompiler."\n" let txt = txt.' C file extension : "'.s:C_CExtension.'" (everything else is C++)'."\n" let txt = txt.' extension for objects : "'.s:C_ObjExtension."\"\n" let txt = txt.'extension for executables : "'.s:C_ExeExtension."\"\n" let txt = txt.' compiler flags : "'.s:C_CFlags."\"\n" let txt = txt.' linker flags : "'.s:C_LFlags."\"\n" let txt = txt.' libraries : "'.s:C_Libs."\"\n" let txt = txt.' code snippet directory : '.s:C_CodeSnippets."\n" if s:installation == 'system' let txt = txt.'global template directory : '.s:C_GlobalTemplateDir."\n" if filereadable( s:C_LocalTemplateFile ) let txt = txt.' local template directory : '.s:C_LocalTemplateDir."\n" endif else let txt = txt.' local template directory : '.s:C_GlobalTemplateDir."\n" endif if !s:MSWIN let txt = txt.' xterm defaults : '.s:C_XtermDefaults."\n" endif " ----- dictionaries ------------------------ if g:C_Dictionary_File != "" let ausgabe= substitute( g:C_Dictionary_File, ",", ",\n + ", "g" ) let txt = txt." dictionary file(s) : ".ausgabe."\n" endif let txt = txt.' current output dest. : '.s:C_OutputGvim."\n" " ----- splint ------------------------------ if s:C_SplintIsExecutable==1 if exists("b:C_SplintCmdLineArgs") let ausgabe = b:C_SplintCmdLineArgs else let ausgabe = "" endif let txt = txt." splint options(s) : ".ausgabe."\n" endif " ----- code check -------------------------- if s:C_CodeCheckIsExecutable==1 if exists("b:C_CodeCheckCmdLineArgs") let ausgabe = b:C_CodeCheckCmdLineArgs else let ausgabe = s:C_CodeCheckOptions endif let txt = txt."CodeCheck (TM) options(s) : ".ausgabe."\n" endif let txt = txt."\n" let txt = txt."__________________________________________________________________________\n" let txt = txt." C/C++-Support, Version ".g:C_Version." / Dr.-Ing. Fritz Mehner / mehner@fh-swf.de\n\n" echo txt endfunction " ---------- end of function C_Settings ---------- " "------------------------------------------------------------------------------ " C_Hardcopy : hardcopy {{{1 " MSWIN : a printer dialog is displayed " other : print PostScript to file "------------------------------------------------------------------------------ function! C_Hardcopy (arg1) let Sou = expand("%") if Sou == "" redraw echohl WarningMsg | echo " no file name " | echohl None return endif let Sou = escape(Sou,s:escfilename) " name of the file in the current buffer let old_printheader=&printheader exe ':set printheader='.s:C_Printheader " ----- normal mode ---------------- if a:arg1=="n" silent exe "hardcopy > ".Sou.".ps" if !s:MSWIN echo "file \"".Sou."\" printed to \"".Sou.".ps\"" endif endif " ----- visual mode ---------------- if a:arg1=="v" silent exe "*hardcopy > ".Sou.".ps" if !s:MSWIN echo "file \"".Sou."\" (lines ".line("'<")."-".line("'>").") printed to \"".Sou.".ps\"" endif endif exe ':set printheader='.escape( old_printheader, ' %' ) endfunction " ---------- end of function C_Hardcopy ---------- " "------------------------------------------------------------------------------ " C_HelpCsupport : help csupport {{{1 "------------------------------------------------------------------------------ function! C_HelpCsupport () try :help csupport catch exe ':helptags '.s:plugin_dir.'doc' :help csupport endtry endfunction " ---------- end of function C_HelpCsupport ---------- "------------------------------------------------------------------------------ " C_CreateGuiMenus {{{1 "------------------------------------------------------------------------------ let s:C_MenuVisible = 0 " state variable controlling the C-menus " function! C_CreateGuiMenus () if s:C_MenuVisible != 1 aunmenu &Tools.Load\ C\ Support amenu 40.1000 &Tools.-SEP100- : amenu 40.1030 &Tools.Unload\ C\ Support :call C_RemoveGuiMenus() call C_InitMenus() let s:C_MenuVisible = 1 endif endfunction " ---------- end of function C_CreateGuiMenus ---------- "------------------------------------------------------------------------------ " C_ToolMenu {{{1 "------------------------------------------------------------------------------ function! C_ToolMenu () amenu 40.1000 &Tools.-SEP100- : amenu 40.1030 &Tools.Load\ C\ Support :call C_CreateGuiMenus() endfunction " ---------- end of function C_ToolMenu ---------- "------------------------------------------------------------------------------ " C_RemoveGuiMenus {{{1 "------------------------------------------------------------------------------ function! C_RemoveGuiMenus () if s:C_MenuVisible == 1 if s:C_Root == "" aunmenu Comments aunmenu Statements aunmenu Preprocessor aunmenu Idioms aunmenu Snippets aunmenu C++ aunmenu Run else exe "aunmenu ".s:C_Root endif " aunmenu &Tools.Unload\ C\ Support call C_ToolMenu() " let s:C_MenuVisible = 0 endif endfunction " ---------- end of function C_RemoveGuiMenus ---------- "------------------------------------------------------------------------------ " C_RebuildTemplates " rebuild commands and the menu from the (changed) template file "------------------------------------------------------------------------------ function! C_RebuildTemplates () let s:C_Template = {} let s:C_FileVisited = [] call C_ReadTemplates(s:C_GlobalTemplateFile) echomsg "templates rebuilt from '".s:C_GlobalTemplateFile."'" " if s:installation == 'system' && filereadable( s:C_LocalTemplateFile ) call C_ReadTemplates( s:C_LocalTemplateFile ) echomsg " and from '".s:C_LocalTemplateFile."'" endif endfunction " ---------- end of function C_RebuildTemplates ---------- "------------------------------------------------------------------------------ " C_ReadTemplates " read the template file(s), build the macro and the template dictionary " "------------------------------------------------------------------------------ function! C_ReadTemplates ( templatefile ) if !filereadable( a:templatefile ) echohl WarningMsg echomsg "C/C++ template file '".a:templatefile."' does not exist or is not readable" echohl None return endif let skipmacros = 0 let s:C_FileVisited += [a:templatefile] "------------------------------------------------------------------------------ " read template file, start with an empty template dictionary "------------------------------------------------------------------------------ let item = '' for line in readfile( a:templatefile ) " if not a comment : if line !~ '^\$' " " macros and file includes " let string = matchlist( line, s:C_MacroLineRegex ) if !empty(string) && skipmacros == 0 let key = '|'.string[1].'|' let val = string[2] let val = substitute( val, '\s\+$', '', '' ) let val = substitute( val, "[\"\']$", '', '' ) let val = substitute( val, "^[\"\']", '', '' ) " if key == '|includefile|' && count( s:C_FileVisited, val ) == 0 let path = fnamemodify( a:templatefile, ":p:h" ) call C_ReadTemplates( path.'/'.val ) " recursive call else let s:C_Macro[key] = val endif continue " next line endif " " template header " let name = matchstr( line, s:C_TemplateLineRegex ) " if name != '' let part = split( name, '\s*==\s*') let item = part[0] if has_key( s:C_Template, item ) && s:C_TemplateOverwrittenMsg == 'yes' echomsg "existing C/C++ template '".item."' overwritten" endif let s:C_Template[item] = '' let skipmacros = 1 " let s:C_Attribute[item] = 'below' if has_key( s:Attribute, get( part, 1, 'NONE' ) ) let s:C_Attribute[item] = part[1] endif else if item != '' let s:C_Template[item] = s:C_Template[item].line."\n" endif endif endif endfor call C_SetSmallCommentStyle() endfunction " ---------- end of function C_ReadTemplates ---------- "------------------------------------------------------------------------------ " C_InsertTemplate " insert a template from the template dictionary " do macro expansion "------------------------------------------------------------------------------ function! C_InsertTemplate ( key, ... ) if !has_key( s:C_Template, a:key ) echomsg "Template '".a:key."' not found. Please check your template file in '".s:C_GlobalTemplateDir."'" return endif "------------------------------------------------------------------------------ " insert the user macros "------------------------------------------------------------------------------ " use internal formatting to avoid conficts when using == below " let equalprg_save = &equalprg set equalprg= let mode = s:C_Attribute[a:key] " remove and insert the complete macro " if a:0 == 0 let val = C_ExpandUserMacros (a:key) if val == "" return endif let val = C_ExpandSingleMacro( val, '', '' ) if mode == 'below' let pos1 = line(".")+1 put =val let pos2 = line(".") " proper indenting exe ":".pos1 let ins = pos2-pos1+1 exe "normal ".ins."==" endif if mode == 'above' let pos1 = line(".") put! =val let pos2 = line(".") " proper indenting exe ":".pos1 let ins = pos2-pos1+1 exe "normal ".ins."==" endif if mode == 'start' normal gg let pos1 = 1 put! =val let pos2 = line(".") " proper indenting exe ":".pos1 let ins = pos2-pos1+1 exe "normal ".ins."==" endif if mode == 'append' let pos1 = line(".") put =val let pos2 = line(".")-1 exe ":".pos1 :join! endif if mode == 'insert' let val = substitute( val, '\n$', '', '' ) let pos1 = line(".") let pos2 = pos1 + count( split(val,'\zs'), "\n" ) exe "normal a".val endif " else " " ===== visual mode =============================== " if a:1 == 'v' let val = C_ExpandUserMacros (a:key) if val == "" return endif let part = split( val, '' ) if len(part) < 2 let part = [ "" ] + part echomsg 'SPLIT missing in template '.a:key endif if mode == 'below' :'put =part[1] let pos1 = line("'<") - len(split(part[0], '\n' )) let pos2 = line("'>") + len(split(part[1], '\n' )) "" echo part[0] part[1] pos1 pos2 " " proper indenting exe ":".pos1 let ins = pos2-pos1+1 exe "normal ".ins."==" endif " endif endif " restore formatter programm let &equalprg = equalprg_save "------------------------------------------------------------------------------ " position the cursor "------------------------------------------------------------------------------ exe ":".pos1 let mtch = search( '', "c", pos2 ) if mtch != 0 if matchend( getline(mtch) ,'') == match( getline(mtch) ,"$" ) normal 8x :startinsert! else normal 8x :startinsert endif else " to the end of the block; needed for repeated inserts if mode == 'below' exe ":".pos2 endif endif endfunction " ---------- end of function C_InsertTemplate ---------- "------------------------------------------------------------------------------ " C_ExpandUserMacros "------------------------------------------------------------------------------ function! C_ExpandUserMacros ( key ) let template = s:C_Template[ a:key ] let s:C_ExpansionCounter = {} " reset the expansion counter "------------------------------------------------------------------------------ " renew the predefined macros and expand them " can be replaced, with e.g. |?DATE| "------------------------------------------------------------------------------ let s:C_Macro['|BASENAME|'] = toupper(expand("%:t:r")) let s:C_Macro['|DATE|'] = C_InsertDateAndTime('d') let s:C_Macro['|FILENAME|'] = expand("%:t") let s:C_Macro['|PATH|'] = expand("%:p:h") let s:C_Macro['|SUFFIX|'] = expand("%:e") let s:C_Macro['|TIME|'] = C_InsertDateAndTime('t') let s:C_Macro['|YEAR|'] = C_InsertDateAndTime('y') "------------------------------------------------------------------------------ " look for replacements "------------------------------------------------------------------------------ while match( template, s:C_ExpansionRegex ) != -1 let macro = matchstr( template, s:C_ExpansionRegex ) let replacement = substitute( macro, '?', '', '' ) let template = substitute( template, macro, replacement, "g" ) let match = matchlist( macro, s:C_ExpansionRegex ) if match[1] != '' let macroname = '|'.match[1].'|' " " notify flag action, if any let flagaction = '' if has_key( s:C_MacroFlag, match[2] ) let flagaction = ' (-> '.s:C_MacroFlag[ match[2] ].')' endif " " ask for a replacement if has_key( s:C_Macro, macroname ) let name = C_Input( match[1].flagaction.' : ', C_ApplyFlag( s:C_Macro[macroname], match[2] ) ) else let name = C_Input( match[1].flagaction.' : ', '' ) endif if name == "" return "" endif " " keep the modified name let s:C_Macro[macroname] = C_ApplyFlag( name, match[2] ) endif endwhile "------------------------------------------------------------------------------ " do the actual macro expansion " loop over the macros found in the template "------------------------------------------------------------------------------ while match( template, s:C_NonExpansionRegex ) != -1 let macro = matchstr( template, s:C_NonExpansionRegex ) let match = matchlist( macro, s:C_NonExpansionRegex ) if match[1] != '' let macroname = '|'.match[1].'|' if has_key( s:C_Macro, macroname ) "------------------------------------------------------------------------------- " check for recursion "------------------------------------------------------------------------------- if has_key( s:C_ExpansionCounter, macroname ) let s:C_ExpansionCounter[macroname] += 1 else let s:C_ExpansionCounter[macroname] = 0 endif if s:C_ExpansionCounter[macroname] >= s:C_ExpansionLimit echomsg " recursion terminated for recursive macro ".macroname return template endif "------------------------------------------------------------------------------- " replace "------------------------------------------------------------------------------- let replacement = C_ApplyFlag( s:C_Macro[macroname], match[2] ) let template = substitute( template, macro, replacement, "g" ) else " " macro not yet defined let s:C_Macro['|'.match[1].'|'] = '' endif endif endwhile return template endfunction " ---------- end of function C_ExpandUserMacros ---------- "------------------------------------------------------------------------------ " C_ApplyFlag "------------------------------------------------------------------------------ function! C_ApplyFlag ( val, flag ) " " l : lowercase if a:flag == ':l' return tolower(a:val) end " " u : uppercase if a:flag == ':u' return toupper(a:val) end " " c : capitalize if a:flag == ':c' return toupper(a:val[0]).a:val[1:] end " " L : legalized name if a:flag == ':L' return C_LegalizeName(a:val) end " " flag not valid return a:val endfunction " ---------- end of function C_ApplyFlag ---------- " "------------------------------------------------------------------------------ " C_ExpandSingleMacro "------------------------------------------------------------------------------ function! C_ExpandSingleMacro ( val, macroname, replacement ) return substitute( a:val, escape(a:macroname, '$' ), a:replacement, "g" ) endfunction " ---------- end of function C_ExpandSingleMacro ---------- "------------------------------------------------------------------------------ " C_SetSmallCommentStyle "------------------------------------------------------------------------------ function! C_SetSmallCommentStyle () if has_key( s:C_Template, 'comment.end-of-line-comment' ) if match( s:C_Template['comment.end-of-line-comment'], '^\s*/\*' ) != -1 let s:C_Com1 = '/*' " C-style : comment start let s:C_Com2 = '*/' " C-style : comment end else let s:C_Com1 = '//' " C++style : comment start let s:C_Com2 = '' " C++style : comment end endif endif endfunction " ---------- end of function C_SetSmallCommentStyle ---------- "------------------------------------------------------------------------------ " C_InsertMacroValue "------------------------------------------------------------------------------ function! C_InsertMacroValue ( key ) if col(".") > 1 exe 'normal a'.s:C_Macro['|'.a:key.'|'] else exe 'normal i'.s:C_Macro['|'.a:key.'|'] end endfunction " ---------- end of function C_InsertMacroValue ---------- "------------------------------------------------------------------------------ " date and time "------------------------------------------------------------------------------ function! C_InsertDateAndTime ( format ) if a:format == 'd' return strftime( s:C_FormatDate ) end if a:format == 't' return strftime( s:C_FormatTime ) end if a:format == 'dt' return strftime( s:C_FormatDate ).' '.strftime( s:C_FormatTime ) end if a:format == 'y' return strftime( s:C_FormatYear ) end endfunction " ---------- end of function C_InsertDateAndTime ---------- "------------------------------------------------------------------------------ " show / hide the c-support menus " define key mappings (gVim only) "------------------------------------------------------------------------------ " if has("gui_running") " call C_ToolMenu() " if s:C_LoadMenus == 'yes' call C_CreateGuiMenus() endif " nmap lcs :call C_CreateGuiMenus() nmap ucs :call C_RemoveGuiMenus() " endif "------------------------------------------------------------------------------ " Automated header insertion " Local settings for the quickfix window "------------------------------------------------------------------------------ if has("autocmd") " " Automated header insertion (suffixes from the gcc manual) " autocmd BufNewFile * if (&filetype=='cpp' || &filetype=='c') | \ call C_InsertTemplate("comment.file-description") | endif " " *.h has filetype 'cpp' by default; this can be changed to 'c' : " if s:C_TypeOfH=='c' autocmd BufNewFile,BufEnter *.h :set filetype=c endif " " C/C++ source code files which should not be preprocessed. " autocmd BufNewFile,BufRead *.i :set filetype=c autocmd BufNewFile,BufRead *.ii :set filetype=cpp " " Wrap error descriptions in the quickfix window. " autocmd BufReadPost quickfix setlocal wrap | setlocal linebreak " endif " has("autocmd") " "------------------------------------------------------------------------------ " READ THE TEMPLATE FILES "------------------------------------------------------------------------------ call C_ReadTemplates(s:C_GlobalTemplateFile) if s:installation == 'system' && filereadable( s:C_LocalTemplateFile ) call C_ReadTemplates( s:C_LocalTemplateFile ) endif " "===================================================================================== " vim: tabstop=2 shiftwidth=2 foldmethod=marker