Add missing entry for 0.19.1 release.
[geany-mirror.git] / data / filetypes.lua
blobe2ad603078937c2e90978bbd3eb769b4ac9df492
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling]
3 # foreground;background;bold;italic
4 default=0x000000;0xffffff;false;false
5 comment=0xd00000;0xffffff;false;false
6 commentline=0xd00000;0xffffff;false;false
7 commentdoc=0x3f5fbf;0xffffff;true;false
8 number=0x007f00;0xffffff;false;false
9 word=0x00007f;0xffffff;true;false
10 string=0xff901e;0xffffff;false;false
11 character=0x008000;0xffffff;false;false
12 literalstring=0x008020;0xffffff;false;false
13 preprocessor=0x007f7f;0xffffff;false;false
14 operator=0x301010;0xffffff;false;false
15 identifier=0x000000;0xffffff;false;false
16 stringeol=0x000000;0xe0c0e0;false;false
17 function_basic=0x991111;0xffffff;false;false
18 function_other=0x690000;0xffffff;false;false
19 coroutines=0x66005c;0xffffff;false;false
20 word5=0x7979ff;0xffffff;false;false
21 word6=0xad00ff;0xffffff;false;false
22 word7=0x03D000;0xffffff;false;false
23 word8=0xff7600;0xffffff;false;false
25 [keywords]
26 # all items must be in one line
27 keywords=and break do else elseif end false for function if in local nil not or repeat return then true until while
28 # Basic functions
29 function_basic=_ALERT assert call collectgarbage coroutine debug dofile dostring error _ERRORMESSAGE foreach foreachi _G gcinfo getfenv getmetatable getn globals _INPUT io ipairs load loadfile loadlib loadstring math module newtype next os _OUTPUT pairs pcall print _PROMPT rawequal rawget rawset require select setfenv setmetatable sort _STDERR _STDIN _STDOUT string table tinsert tonumber tostring tremove type unpack _VERSION xpcall
30 # String, (table) & math functions
31 function_other=abs acos asin atan atan2 ceil cos deg exp floor format frexp gsub ldexp log log10 math.abs math.acos math.asin math.atan math.atan2 math.ceil math.cos math.cosh math.deg math.exp math.floor math.fmod math.frexp math.huge math.ldexp math.log math.log10 math.max math.min math.mod math.modf math.pi math.pow math.rad math.random math.randomseed math.sin math.sinh math.sqrt math.tan math.tanh max min mod rad random randomseed sin sqrt strbyte strchar strfind string.byte string.char string.dump string.find string.format string.gfind string.gmatch string.gsub string.len string.lower string.match string.rep string.reverse string.sub string.upper strlen strlower strrep strsub strupper table.concat table.foreach table.foreachi table.getn table.insert table.maxn table.remove table.setn table.sort tan
32 # (coroutines), I/O & system facilities
33 coroutines=appendto clock closefile coroutine.create coroutine.resume coroutine.running coroutine.status coroutine.wrap coroutine.yield date difftime execute exit flush getenv io.close io.flush io.input io.lines io.open io.output io.popen io.read io.stderr io.stdin io.stdout io.tmpfile io.type io.write openfile os.clock os.date os.difftime os.execute os.exit os.getenv os.remove os.rename os.setlocale os.time os.tmpname package.cpath package.loaded package.loadlib package.path package.preload package.seeall read readfrom remove rename seek setlocale time tmpfile tmpname write writeto
34 # user definable keywords
35 user1=
36 user2=
37 user3=
38 user4=
40 [settings]
41 # default extension used when saving files
42 #extension=lua
44 # the following characters are these which a "word" can contains, see documentation
45 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
47 # if only single comment char is supported like # in this file, leave comment_close blank
48 comment_open=--
49 comment_close=
50 # this is an alternative way, so multiline comments are used
51 #comment_open=--[[
52 #comment_close=]]--
54 # set to false if a comment character/string should start at column 0 of a line, true uses any
55 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
56 #command_example();
57 # setting to false would generate this
58 # command_example();
59 # This setting works only for single line comments
60 comment_use_indent=true
62 # context action command (please see Geany's main documentation for details)
63 context_action_cmd=
65 [build_settings]
66 # %f will be replaced by the complete filename
67 # %e will be replaced by the filename without extension
68 # (use only one of it at one time)
69 compiler=
70 run_cmd=lua "%f"