2006-04-27 16:31:40 +00:00
|
|
|
# For complete documentation of this file, please see Geany's main documentation
|
|
|
|
[styling]
|
|
|
|
# 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
|
2010-10-29 15:09:21 +00:00
|
|
|
uuid=extra
|
2009-06-17 11:17:07 +00:00
|
|
|
preprocessor=preprocessor
|
|
|
|
operator=operator
|
|
|
|
identifier=default
|
|
|
|
stringeol=stringeol
|
|
|
|
# @"verbatim"
|
2010-10-29 15:09:21 +00:00
|
|
|
verbatim=extra
|
2009-06-17 11:17:07 +00:00
|
|
|
# (/regex/)
|
2010-10-29 15:09:21 +00:00
|
|
|
regex=extra
|
2009-06-17 11:17:07 +00:00
|
|
|
commentlinedoc=commentdoc,bold
|
|
|
|
commentdockeyword=commentdoc,bold,italic
|
|
|
|
commentdockeyworderror=commentdoc
|
|
|
|
globalclass=type
|
2006-04-27 16:31:40 +00:00
|
|
|
|
|
|
|
[keywords]
|
|
|
|
# all items must be in one line
|
2006-05-05 16:03:08 +00:00
|
|
|
primary=and and_eq asm auto bitand bitor bool break case catch char class compl const const_cast continue default delete do double dynamic_cast else enum explicit export extern false float for friend goto if inline int long mutable namespace new not not_eq operator or or_eq private protected public register reinterpret_cast return short signed sizeof static static_cast struct switch template this throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
|
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
|
2006-04-27 16:31:40 +00:00
|
|
|
|
2009-12-03 13:43:37 +00:00
|
|
|
[lexer_properties]
|
|
|
|
styling.within.preprocessor=1
|
|
|
|
preprocessor.symbol.$(file.patterns.cpp)=#
|
|
|
|
preprocessor.start.$(file.patterns.cpp)=if ifdef ifndef
|
|
|
|
preprocessor.middle.$(file.patterns.cpp)=else elif
|
|
|
|
preprocessor.end.$(file.patterns.cpp)=endif
|
|
|
|
|
2006-04-27 16:31:40 +00:00
|
|
|
[settings]
|
2009-12-03 16:22:33 +00:00
|
|
|
lexer_filetype=C
|
|
|
|
|
2007-11-01 16:33:06 +00:00
|
|
|
# default extension used when saving files
|
2010-10-20 16:15:39 +00:00
|
|
|
extension=cpp
|
2007-11-01 16:33:06 +00:00
|
|
|
|
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
|
|
|
|
comment_open=//
|
|
|
|
comment_close=
|
|
|
|
# this is an alternative way, so multiline comments are used
|
|
|
|
#comment_open=/*
|
|
|
|
#comment_close=*/
|
|
|
|
|
2006-07-27 20:57:13 +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=g++ -Wall -c "%f"
|
2008-03-17 17:13:56 +00:00
|
|
|
linker=g++ -Wall -o "%e" "%f"
|
2006-05-16 19:08:01 +00:00
|
|
|
run_cmd="./%e"
|
2006-04-27 16:31:40 +00:00
|
|
|
|