Regenerate Python tag list
[geany-mirror.git] / data / filetypes.objectivec
blob8cc04d4d40a6d33dd7a90daba5ebd7d939d92e36
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=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 FALSE NULL TRUE
7 secondary=@class @defs @dynamic @encode @end @implementation @interface @optional @package @public @private @property @protocol @protected @required @selector @synthesize @synchronized
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=C]
13 [settings]
14 # default extension used when saving files
15 extension=m
17 # the following characters are these which a "word" can contains, see documentation
18 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
20 # single comments, like # in this file
21 comment_single=//
22 # multiline comments
23 comment_open=/*
24 comment_close=*/
26 # set to false if a comment character/string should start at column 0 of a line, true uses any
27 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
28         #command_example();
29 # setting to false would generate this
30 #       command_example();
31 # This setting works only for single line comments
32 comment_use_indent=true
34 # context action command (please see Geany's main documentation for details)
35 context_action_cmd=
37 [indentation]
38 #width=4
39 # 0 is spaces, 1 is tabs, 2 is tab & spaces
40 #type=1
42 [build_settings]
43 # %f will be replaced by the complete filename
44 # %e will be replaced by the filename without extension
45 # (use only one of it at one time)
46 compiler=gcc -Wall -c "%f"
47 linker=gcc -Wall -o "%e" "%f" -lobjc
48 run_cmd="./%e"