Update 'docComment' keywords in C, C++, Vala, and Genie filetypes
[geany-mirror.git] / data / filetypes.c
blob5787b8448434089c94e8a61d862cb521e926f01d
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling]
3 # Edit these in the colorscheme .conf file instead
4 default=default
5 comment=comment
6 commentline=comment_line
7 commentdoc=comment_doc
8 number=number_1
9 word=keyword_1
10 word2=keyword_2
11 string=string_1
12 character=string_1
13 uuid=other
14 preprocessor=preprocessor
15 operator=operator
16 identifier=identifier_1
17 stringeol=string_eol
18 verbatim=string_2
19 regex=regex
20 commentlinedoc=comment_line_doc
21 commentdockeyword=comment_doc_keyword
22 commentdockeyworderror=comment_doc_keyword_error
23 globalclass=class
24 # """verbatim"""
25 tripleverbatim=string_2
27 [keywords]
28 # all items must be in one line
29 primary=asm auto break case char const continue default do double else enum extern float for goto if inline int long register restrict return short signed sizeof static struct switch typedef union unsigned void volatile while FALSE NULL TRUE
30 secondary=
31 # these are the Doxygen keywords
32 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
34 [lexer_properties]
35 styling.within.preprocessor=1
36 lexer.cpp.track.preprocessor=0
37 preprocessor.symbol.$(file.patterns.cpp)=#
38 preprocessor.start.$(file.patterns.cpp)=if ifdef ifndef
39 preprocessor.middle.$(file.patterns.cpp)=else elif
40 preprocessor.end.$(file.patterns.cpp)=endif
42 [settings]
43 # default extension used when saving files
44 extension=c
46 # the following characters are these which a "word" can contains, see documentation
47 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
49 # single comments, like # in this file
50 comment_single=//
51 # multiline comments
52 comment_open=/*
53 comment_close=*/
55 # set to false if a comment character/string should start at column 0 of a line, true uses any
56 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
57 #command_example();
58 # setting to false would generate this
59 # command_example();
60 # This setting works only for single line comments
61 comment_use_indent=true
63 # context action command (please see Geany's main documentation for details)
64 context_action_cmd=
66 [indentation]
67 #width=4
68 # 0 is spaces, 1 is tabs, 2 is tab & spaces
69 #type=1
71 [build_settings]
72 # %f will be replaced by the complete filename
73 # %e will be replaced by the filename without extension
74 # (use only one of it at one time)
75 compiler=gcc -Wall -c "%f"
76 linker=gcc -Wall -o "%e" "%f"
77 run_cmd="./%e"