2006-04-27 16:31:40 +00:00
|
|
|
# For complete documentation of this file, please see Geany's main documentation
|
2005-11-22 12:26:26 +00:00
|
|
|
[styling]
|
2006-03-10 21:44:12 +00:00
|
|
|
# foreground;background;bold;italic
|
2009-06-17 11:17:07 +00:00
|
|
|
default=default
|
|
|
|
comment=comment
|
|
|
|
commentline=comment
|
|
|
|
commentdoc=commentdoc
|
|
|
|
number=number
|
|
|
|
word=word
|
|
|
|
word2=word2
|
|
|
|
string=string
|
|
|
|
character=string
|
|
|
|
uuid=0x404080
|
|
|
|
preprocessor=preprocessor
|
|
|
|
operator=operator
|
|
|
|
identifier=default
|
|
|
|
stringeol=stringeol
|
|
|
|
# @"verbatim"
|
|
|
|
verbatim=0x101030
|
|
|
|
# (/regex/)
|
|
|
|
regex=0x105090
|
|
|
|
commentlinedoc=commentdoc,bold
|
|
|
|
commentdockeyword=commentdoc,bold,italic
|
|
|
|
commentdockeyworderror=commentdoc
|
|
|
|
globalclass=type
|
2006-05-21 14:53:04 +00:00
|
|
|
# whether arguments of preprocessor commands should be styled (only first argument is used)
|
|
|
|
# 1 to enable, 0 to disable
|
|
|
|
styling_within_preprocessor=1;0;false;false
|
2005-12-05 20:46:08 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
[keywords]
|
2005-12-05 20:46:08 +00:00
|
|
|
# all items must be in one line
|
2008-11-29 12:52:26 +00:00
|
|
|
primary=asm auto break case char const continue default do double else enum extern float for goto if inline int long register return short signed sizeof static struct switch typedef union unsigned void volatile while FALSE NULL TRUE
|
2007-03-02 16:04:29 +00:00
|
|
|
secondary=
|
2006-12-03 22:11:42 +00:00
|
|
|
# these are some doxygen keywords (incomplete)
|
|
|
|
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
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-04-27 16:31:40 +00:00
|
|
|
[settings]
|
2007-11-01 16:33:06 +00:00
|
|
|
# default extension used when saving files
|
|
|
|
#extension=c
|
|
|
|
|
2006-04-27 16:31:40 +00:00
|
|
|
# the following characters are these which a "word" can contains, see documentation
|
2006-11-23 15:48:02 +00:00
|
|
|
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
|
2006-04-27 16:31:40 +00:00
|
|
|
|
|
|
|
# if only single comment char is supported like # in this file, leave comment_close blank
|
2006-06-03 17:06:53 +00:00
|
|
|
comment_open=//
|
|
|
|
comment_close=
|
2006-04-27 16:31:40 +00:00
|
|
|
# this is an alternative way, so multiline comments are used
|
|
|
|
#comment_open=/*
|
|
|
|
#comment_close=*/
|
|
|
|
|
2006-06-03 17:06:53 +00:00
|
|
|
# set to false if a comment character/string should start at column 0 of a line, true uses any
|
2007-03-09 12:26:55 +00:00
|
|
|
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
|
2006-04-27 16:31:40 +00:00
|
|
|
#command_example();
|
|
|
|
# setting to false would generate this
|
|
|
|
# command_example();
|
|
|
|
# This setting works only for single line comments
|
|
|
|
comment_use_indent=true
|
|
|
|
|
2007-04-15 18:09:59 +00:00
|
|
|
# context action command (please see Geany's main documentation for details)
|
|
|
|
context_action_cmd=
|
|
|
|
|
2006-04-27 16:31:40 +00:00
|
|
|
[build_settings]
|
|
|
|
# %f will be replaced by the complete filename
|
|
|
|
# %e will be replaced by the filename without extension
|
|
|
|
# (use only one of it at one time)
|
2006-05-16 19:08:01 +00:00
|
|
|
compiler=gcc -Wall -c "%f"
|
2008-03-17 17:13:56 +00:00
|
|
|
linker=gcc -Wall -o "%e" "%f"
|
2006-05-16 19:08:01 +00:00
|
|
|
run_cmd="./%e"
|
2006-04-27 16:31:40 +00:00
|
|
|
|
|
|
|
|