Reword "wordchars" description using the description from the manual
[geany-mirror.git] / data / filedefs / filetypes.caml
blob7508087f2327df0dd433429cabd96c3d8e9e086a
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling]
3 # Edit these in the colorscheme .conf file instead
4 default=default
5 comment=comment
6 comment1=comment
7 comment2=comment
8 comment3=comment
9 number=number_1
10 keyword=keyword_1
11 keyword2=keyword_2
12 keyword3=keyword_3
13 string=string_1
14 char=character
15 operator=operator
16 identifier=identifier_1
17 tagname=preprocessor
18 linenum=number_2
19 white=default
21 [keywords]
22 # all items must be in one line
23 keywords=and as assert asr begin class constraint do done downto else end exception external false for fun function functor if in include inherit initializer land lazy let lor lsl lsr lxor match method mod module mutable new object of open or private rec sig struct then to true try type val virtual when while with
24 keywords_optional=option Some None ignore ref
27 [settings]
28 # default extension used when saving files
29 extension=ml
31 # MIME type
32 mime_type=text/x-ocaml
34 # these characters define word boundaries when making selections and searching
35 # using word matching options
36 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
38 # single comments, like # in this file
39 #comment_single=
40 # multiline comments
41 comment_open=(*
42 comment_close=*)
44 # set to false if a comment character/string should start at column 0 of a line, true uses any
45 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
46 #               #command_example();
47 # setting to false would generate this
48 # #             command_example();
49 # This setting works only for single line comments
50 comment_use_indent=true
52 # context action command (please see Geany's main documentation for details)
53 context_action_cmd=
55 [indentation]
56 #width=4
57 # 0 is spaces, 1 is tabs, 2 is tab & spaces
58 #type=1
60 [build_settings]
61 # %f will be replaced by the complete filename
62 # %e will be replaced by the filename without extension
63 # (use only one of it at one time)
64 compiler=ocamlc -c "%f"
65 linker=ocamlc -o "%e" "%f"
66 run_cmd="./%e"