Merge pull request #826 from kugel-/doxygen-fixes2
[geany-mirror.git] / data / filetypes.cs
blob3d59b4801ed96c5ffaeccbb478783a9a1a63180e
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=abstract as base bool break byte case catch char checked class const continue decimal default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long namespace new null object operator out override params private protected public readonly ref return sbyte sealed short sizeof stackalloc static string struct switch this throw true try typeof uint ulong unchecked unsafe ushort using virtual void volatile while
7 secondary=
8 # these are some doxygen keywords (incomplete)
9 docComment=attention author brief bug class code date def enum example exception file fn namespace note param remarks return see since struct throw todo typedef var version warning union
11 [lexer_properties]
12 styling.within.preprocessor=1
13 lexer.cpp.track.preprocessor=0
14 preprocessor.symbol.$(file.patterns.cpp)=#
15 preprocessor.start.$(file.patterns.cpp)=if
16 preprocessor.middle.$(file.patterns.cpp)=else elif
17 preprocessor.end.$(file.patterns.cpp)=endif
19 [settings]
20 lexer_filetype=C
22 # default extension used when saving files
23 extension=cs
25 # MIME type
26 mime_type=text/x-csharp
28 # the following characters are these which a "word" can contains, see documentation
29 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
31 # single comments, like # in this file
32 comment_single=//
33 # multiline comments
34 comment_open=/*
35 comment_close=*/
37 # set to false if a comment character/string should start at column 0 of a line, true uses any
38 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
39 #command_example();
40 # setting to false would generate this
41 # command_example();
42 # This setting works only for single line comments
43 comment_use_indent=true
45 # context action command (please see Geany's main documentation for details)
46 context_action_cmd=
48 [indentation]
49 #width=4
50 # 0 is spaces, 1 is tabs, 2 is tab & spaces
51 #type=1
53 [build_settings]
54 # %f will be replaced by the complete filename
55 # %e will be replaced by the filename without extension
56 # (use only one of it at one time)
57 # be careful following settings are untested
58 compiler=mcs /t:winexe "%f" /r:System,System.Drawing
59 run_cmd=mono "%e.exe"