plugins: plugin loader redesign
[geany-mirror.git] / data / filetypes.c
blob0099f66ad493ff541dc8903649ed6331dd6a23f5
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 preprocessorcomment=comment
9 preprocessorcommentdoc=comment_doc
10 number=number_1
11 word=keyword_1
12 word2=keyword_2
13 string=string_1
14 stringraw=string_2
15 character=character
16 userliteral=other
17 uuid=other
18 preprocessor=preprocessor
19 operator=operator
20 identifier=identifier_1
21 stringeol=string_eol
22 verbatim=string_2
23 regex=regex
24 commentlinedoc=comment_line_doc
25 commentdockeyword=comment_doc_keyword
26 commentdockeyworderror=comment_doc_keyword_error
27 globalclass=class
28 # """verbatim"""
29 tripleverbatim=string_2
30 hashquotedstring=string_2
31 taskmarker=comment
32 escapesequence=string_1
34 [keywords]
35 # all items must be in one line
36 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 _Alignas _Alignof _Atomic _Bool _Complex _Generic _Imaginary _Noreturn _Static_assert _Thread_local FALSE NULL TRUE
37 secondary=
38 # these are the Doxygen keywords
39 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
41 [lexer_properties]
42 styling.within.preprocessor=1
43 lexer.cpp.track.preprocessor=0
44 preprocessor.symbol.$(file.patterns.cpp)=#
45 preprocessor.start.$(file.patterns.cpp)=if ifdef ifndef
46 preprocessor.middle.$(file.patterns.cpp)=else elif
47 preprocessor.end.$(file.patterns.cpp)=endif
49 [settings]
50 # default extension used when saving files
51 extension=c
53 # MIME type
54 mime_type=text/x-csrc
56 # the following characters are these which a "word" can contains, see documentation
57 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
59 # single comments, like # in this file
60 comment_single=//
61 # multiline comments
62 comment_open=/*
63 comment_close=*/
65 # set to false if a comment character/string should start at column 0 of a line, true uses any
66 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
67 #command_example();
68 # setting to false would generate this
69 # command_example();
70 # This setting works only for single line comments
71 comment_use_indent=true
73 # context action command (please see Geany's main documentation for details)
74 context_action_cmd=
76 [indentation]
77 #width=4
78 # 0 is spaces, 1 is tabs, 2 is tab & spaces
79 #type=1
81 [build-menu]
82 # %f will be replaced by the complete filename
83 # %e will be replaced by the filename without extension
84 # (use only one of it at one time)
85 FT_00_LB=_Compile
86 FT_00_CM=gcc -Wall -c "%f"
87 FT_00_WD=
88 FT_01_LB=_Build
89 FT_01_CM=gcc -Wall -o "%e" "%f"
90 FT_01_WD=
91 FT_02_LB=_Lint
92 FT_02_CM=cppcheck --language=c --enable=warning,style --template=gcc "%f"
93 FT_02_WD=
94 EX_00_LB=_Execute
95 EX_00_CM="./%e"
96 EX_00_WD=