Reword "wordchars" description using the description from the manual
[geany-mirror.git] / data / filedefs / filetypes.asm
blob6ce9c8874cd05cc7edb94de5daf9aa92fad32ac3
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_line
6 commentblock=comment
7 commentdirective=comment
8 number=number_1
9 string=string_1
10 operator=operator
11 identifier=identifier_1
12 cpuinstruction=keyword_1
13 mathinstruction=keyword_2
14 register=type
15 directive=preprocessor
16 directiveoperand=keyword_3
17 character=character
18 stringeol=string_eol
19 extinstruction=keyword_4
21 [keywords]
22 # all items must be in one line
23 # this is by default a very simple instruction set; not of Intel or so
24 instructions=hlt lad spi add sub mul div jmp jez jgz jlz swap jsr ret pushac popac addst subst mulst divst lsa lds push pop cli ldi ink lia dek ldx
25 registers=
26 directives=org list nolist page equivalent word text
29 [settings]
30 # default extension used when saving files
31 extension=asm
33 # these characters define word boundaries when making selections and searching
34 # using word matching options
35 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
37 # single comments, like # in this file
38 comment_single=;
39 # multiline comments
40 #comment_open=
41 #comment_close=
43 # set to false if a comment character/string should start at column 0 of a line, true uses any
44 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
45 # #command_example();
46 # setting to false would generate this
47 # # command_example();
48 # This setting works only for single line comments
49 comment_use_indent=true
51 # context action command (please see Geany's main documentation for details)
52 context_action_cmd=
54 [indentation]
55 #width=4
56 # 0 is spaces, 1 is tabs, 2 is tab & spaces
57 #type=1
59 [build_settings]
60 # %f will be replaced by the complete filename
61 # %e will be replaced by the filename without extension
62 # (use only one of it at one time)
63 compiler=nasm "%f"