Merge pull request #3916 from techee/symtree_icons
[geany-mirror.git] / data / filedefs / filetypes.cpp
blobd3e4a9680110ad7405bcfbf637df13af6622a629
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling=C]
4 [keywords]
5 # all items must be in one line
6 primary=alignas alignof and and_eq asm auto bitand bitor bool break case catch char char8_t char16_t char32_t class compl concept const const_cast consteval constexpr constinit continue co_await co_return co_yield decltype default delete do double dynamic_cast else enum explicit export extern false final float for friend goto if import inline int long module mutable namespace new noexcept not not_eq nullptr operator or or_eq override private protected public register reinterpret_cast requires return short signed sizeof static static_assert static_cast struct switch template this thread_local throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
7 secondary=
8 # these are the Doxygen keywords
9 docComment=a addindex addtogroup anchor arg attention author authors b brief bug c callergraph callgraph category cite class code cond copybrief copydetails copydoc copyright date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endinternal endlatexonly endlink endmanonly endmsc endrtfonly endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc mscfile n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref related relatedalso relates relatesalso remark remarks result return returns retval rtfonly sa section see short showinitializer since skip skipline snippet struct subpage subsection subsubsection tableofcontents test throw throws todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem
11 [lexer_properties=C]
13 [settings]
14 lexer_filetype=C
16 # default extension used when saving files
17 extension=cpp
19 # MIME type
20 mime_type=text/x-c++src
22 # these characters define word boundaries when making selections and searching
23 # using word matching options
24 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
26 # single comments, like # in this file
27 comment_single=//
28 # multiline comments
29 comment_open=/*
30 comment_close=*/
32 # set to false if a comment character/string should start at column 0 of a line, true uses any
33 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
34 # #command_example();
35 # setting to false would generate this
36 # # command_example();
37 # This setting works only for single line comments
38 comment_use_indent=true
40 # context action command (please see Geany's main documentation for details)
41 context_action_cmd=
43 [indentation]
44 #width=4
45 # 0 is spaces, 1 is tabs, 2 is tab & spaces
46 #type=1
48 [build-menu]
49 # %f will be replaced by the complete filename
50 # %e will be replaced by the filename without extension
51 FT_00_LB=_Compile
52 FT_00_CM=g++ -Wall -c "%f"
53 FT_00_WD=
54 FT_01_LB=_Build
55 FT_01_CM=g++ -Wall -o "%e" "%f"
56 FT_01_WD=
57 FT_02_LB=_Lint
58 FT_02_CM=cppcheck --language=c++ --enable=warning,style --template=gcc "%f"
59 FT_02_WD=
60 EX_00_LB=_Execute
61 EX_00_CM="./%e"
62 EX_00_WD=