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

« back to all changes in this revision

Viewing changes to data/filetypes.c

  • 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
8
number=0x007f00;0xffffff;false;false
9
9
word=0x00007f;0xffffff;true;false
10
10
word2=0x991111;0xffffff;true;false
17
17
stringeol=0x000000;0xe0c0e0;false;false
18
18
verbatim=0x101030;0xffffff;false;false
19
19
regex=0x105090;0xffffff;false;false
20
 
commentlinedoc=0xff0000;0xffffff;true;false
21
 
commentdockeyword=0xff0000;0xffffff;true;true
22
 
globalclass=0x1111bb;0xffffff;true;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
23
24
# whether arguments of preprocessor commands should be styled (only first argument is used)
24
25
# 1 to enable, 0 to disable
25
26
styling_within_preprocessor=1;0;false;false
27
28
[keywords]
28
29
# all items must be in one line
29
30
primary=volatile default export goto sizeof typename asm enum bool union NULL FALSE TRUE typedef struct char int float double void unsigned signed long short extern static register auto const if else switch for while do break continue return class new delete inline case
30
 
docComment=TODO FIXME
 
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
31
34
 
32
35
[settings]
 
36
# default extension used when saving files
 
37
#extension=c
 
38
 
33
39
# the following characters are these which a "word" can contains, see documentation
34
 
wordchars=_#&abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
 
40
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
35
41
 
36
42
# if only single comment char is supported like # in this file, leave comment_close blank
37
43
comment_open=//
41
47
#comment_close=*/
42
48
 
43
49
# set to false if a comment character/string should start at column 0 of a line, true uses any
44
 
# indention of the line, e.g. setting to true causes the following on pressing CTRL+d
 
50
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
45
51
        #command_example();
46
52
# setting to false would generate this
47
53
#       command_example();
48
54
# This setting works only for single line comments
49
55
comment_use_indent=true
50
56
 
 
57
# context action command (please see Geany's main documentation for details)
 
58
context_action_cmd=
 
59
 
51
60
[build_settings]
52
61
# %f will be replaced by the complete filename
53
62
# %e will be replaced by the filename without extension
54
63
# (use only one of it at one time)
55
64
compiler=gcc -Wall -c "%f"
56
 
# the -o option is automatically added by Geany
57
 
linker=gcc -Wall "%f"
 
65
linker=gcc -Wall -o "%e" "%f"
58
66
run_cmd="./%e"
59
67
 
60
68