~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to data/filetypes.caml

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mfrom: (1.2.1 upstream) (9 hardy)
  • mto: (3.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20080502113745-xzp4g6dmovrpoj17
Tags: 0.14-1
New upstream release (Closes: #478126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
 
25
25
[settings]
 
26
# default extension used when saving files
 
27
#extension=ml
 
28
 
26
29
# the following characters are these which a "word" can contains, see documentation
27
 
wordchars=_#&abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
 
30
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
28
31
 
29
32
# if only single comment char is supported like # in this file, leave comment_close blank
30
33
comment_open=(*
31
34
comment_close=*)
32
35
 
33
36
# set to false if a comment character/string should start at column 0 of a line, true uses any
34
 
# indention of the line, e.g. setting to true causes the following on pressing CTRL+d
 
37
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
35
38
        #command_example();
36
39
# setting to false would generate this
37
40
#       command_example();
38
41
# This setting works only for single line comments
39
42
comment_use_indent=true
40
43
 
 
44
# context action command (please see Geany's main documentation for details)
 
45
context_action_cmd=
 
46
 
41
47
[build_settings]
42
48
# %f will be replaced by the complete filename
43
49
# %e will be replaced by the filename without extension
44
50
# (use only one of it at one time)
45
51
compiler=ocamlc -c "%f"
46
 
linker=ocamlc "%f"
 
52
linker=ocamlc -o "%e" "%f"
47
53
run_cmd="./%e"