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

« back to all changes in this revision

Viewing changes to data/filetypes.d

  • 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:
2
2
[styling]
3
3
# foreground;background;bold;italic
4
4
default=0x000000;0xffffff;false;false
5
 
comment=0xff0000;0xffffff;false;false
6
 
commentline=0xff0000;0xffffff;false;false
7
 
commentdoc=0xff0000;0xffffff;false;false
 
5
comment=0xd00000;0xffffff;false;false
 
6
commentline=0xd00000;0xffffff;false;false
 
7
commentdoc=0x3f5fbf;0xffffff;false;false
 
8
commentdocnested=0x3f5fbf;0xffffff;false;false
8
9
number=0x007f00;0xffffff;false;false
9
 
word=0x111199;0xffffff;true;false
10
 
word2=0x7f0000;0xffffff;true;false
 
10
word=0x00007f;0xffffff;true;false
 
11
word2=0x991111;0xffffff;true;false
 
12
word3=0x991111;0xffffff;true;false
 
13
typedef=0x0000d0;0xffffff;true;false
11
14
string=0xff901e;0xffffff;false;false
 
15
stringeol=0x000000;0xe0c0e0;false;false
12
16
character=0xff901e;0xffffff;false;false
13
 
uuid=0x404080;0xffffff;false;false
14
 
preprocessor=0x7F7F00;0xffffff;false;false
15
17
operator=0x301010;0xffffff;false;false
16
18
identifier=0x000000;0xffffff;false;false
17
 
stringeol=0x000000;0xe0c0e0;false;false
18
 
verbatim=0x301010;0xffffff;false;false
19
 
regex=0x105090;0xffffff;false;false
20
 
commentlinedoc=0xff0000;0xffffff;true;false
21
 
commentdockeyword=0xff0000;0xffffff;true;true
22
 
globalclass=0x1111bb;0xffffff;true;false
23
 
# whether arguments of preprocessor commands should be styled (only first argument is used)
24
 
# 1 to enable, 0 to disable
25
 
styling_within_preprocessor=1;0;false;false
 
19
commentlinedoc=0x3f5fbf;0xffffff;true;false
 
20
commentdockeyword=0x3f5fbf;0xffffff;true;true
 
21
commentdockeyworderror=0x3f5fbf;0xffffff;false;false
26
22
 
27
23
[keywords]
28
24
# all items must be in one line
29
25
primary=__FILE__ __LINE__ __DATA__ __TIME__ __TIMESTAMP__ abstract alias align asm assert auto body bool break byte case cast catch cdouble cent cfloat char class const continue creal dchar debug default delegate delete deprecated do double else enum export extern false final finally float for foreach function goto idouble if ifloat import in inout int interface invariant ireal is long mixin module new null out override package pragma private protected public real return scope short static struct super switch synchronized template this throw true try typedef typeof ubyte ucent uint ulong union unittest ushort version void volatile wchar while with
30
 
docComment=TODO FIXME
 
26
secondary=
 
27
# documentation keywords for D, currently not working
 
28
docComment=Authors Bugs Copyright Date Deprecated Examples History License Macros Params Returns See_Also Standards Throws Version
 
29
types=
31
30
 
32
31
[settings]
 
32
# default extension used when saving files
 
33
#extension=d
 
34
 
33
35
# the following characters are these which a "word" can contains, see documentation
34
 
wordchars=_#&abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
 
36
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
35
37
 
36
38
# if only single comment char is supported like # in this file, leave comment_close blank
37
39
comment_open=//
44
46
#comment_close=+/
45
47
 
46
48
# set to false if a comment character/string should start at column 0 of a line, true uses any
47
 
# indention of the line, e.g. setting to true causes the following on pressing CTRL+d
 
49
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
48
50
        #command_example();
49
51
# setting to false would generate this
50
52
#       command_example();
51
53
# This setting works only for single line comments
52
54
comment_use_indent=true
53
55
 
 
56
# context action command (please see Geany's main documentation for details)
 
57
context_action_cmd=
 
58
 
54
59
[build_settings]
55
60
# %f will be replaced by the complete filename
56
61
# %e will be replaced by the filename without extension
57
62
# (use only one of it at one time)
58
63
compiler=dmd -w -c "%f"
59
 
# the -of option is automatically added by Geany
60
 
linker=dmd -w "%f"
 
64
linker=dmd -w -of"%e" "%f"
61
65
# you can also use the gdc compiler, please use the "gdmd" wrapper script(included with gdc)
62
66
#compiler=gdmd -w -c "%f"
63
 
#linker=gdmd -w "%f"
 
67
#linker=gdmd -w -of"%e" "%f"
64
68
 
65
69
run_cmd="./%e"
66
70