~ubuntu-branches/debian/experimental/geany/experimental

« back to all changes in this revision

Viewing changes to data/filetypes.cs

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mfrom: (1.2.1 upstream) (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080502113745-xzp4g6dmovrpoj17
Tags: 0.14-1
New upstream release (Closes: #478126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# For complete documentation of this file, please see Geany's main documentation
 
2
[styling]
 
3
# foreground;background;bold;italic
 
4
default=0x000000;0xffffff;false;false
 
5
comment=0xd00000;0xffffff;false;false
 
6
commentline=0xd00000;0xffffff;false;false
 
7
commentdoc=0x3f5fbf;0xffffff;false;false
 
8
number=0x007f00;0xffffff;false;false
 
9
word=0x00007f;0xffffff;true;false
 
10
word2=0x991111;0xffffff;true;false
 
11
string=0xff901e;0xffffff;false;false
 
12
character=0xff901e;0xffffff;false;false
 
13
uuid=0x404080;0xffffff;false;false
 
14
preprocessor=0x007F7F;0xffffff;false;false
 
15
operator=0x301010;0xffffff;false;false
 
16
identifier=0x000000;0xffffff;false;false
 
17
stringeol=0x000000;0xe0c0e0;false;false
 
18
verbatim=0x101030;0xffffff;false;false
 
19
regex=0x105090;0xffffff;false;false
 
20
commentlinedoc=0x3f5fbf;0xffffff;true;false
 
21
commentdockeyword=0x3f5fbf;0xffffff;true;true
 
22
commentdockeyworderror=0x3f5fbf;0xffffff;false;false
 
23
globalclass=0x0000d0;0xffffff;true;false
 
24
# whether arguments of preprocessor commands should be styled (only first argument is used)
 
25
# 1 to enable, 0 to disable
 
26
styling_within_preprocessor=1;0;false;false
 
27
 
 
28
[keywords]
 
29
# all items must be in one line
 
30
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
 
31
secondary=
 
32
# these are some doxygen keywords (incomplete)
 
33
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
 
34
 
 
35
[settings]
 
36
# default extension used when saving files
 
37
#extension=cs
 
38
 
 
39
# the following characters are these which a "word" can contains, see documentation
 
40
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
 
41
 
 
42
# if only single comment char is supported like # in this file, leave comment_close blank
 
43
comment_open=//
 
44
comment_close=
 
45
# this is an alternative way, so multiline comments are used
 
46
#comment_open=/*
 
47
#comment_close=*/
 
48
 
 
49
# set to false if a comment character/string should start at column 0 of a line, true uses any
 
50
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
 
51
        #command_example();
 
52
# setting to false would generate this
 
53
#       command_example();
 
54
# This setting works only for single line comments
 
55
comment_use_indent=true
 
56
 
 
57
# context action command (please see Geany's main documentation for details)
 
58
context_action_cmd=
 
59
 
 
60
[build_settings]
 
61
# %f will be replaced by the complete filename
 
62
# %e will be replaced by the filename without extension
 
63
# (use only one of it at one time)
 
64
# be careful following settings are untested
 
65
compiler=mcs /t:winexe "%f" /r:System,System.Drawing
 
66
run_cmd=mono "%e.exe"