| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0"?>
- <Language name="Awk" ext="awk" CaseSensitive="true" >
- <Completion CaseSensitive="false">
- <Include Attribute="Keyword"></Include>
- <Include Attribute="Functions"></Include>
- <Include Attribute="Variables"></Include>
- "BEGIN {}"
-
- "END {}"
- </Completion>
- <Attribute name="Keyword" ForeCol="#00A000" Bold="true"></Attribute>
- <Attribute name="Functions" Bold="true"></Attribute>
- <Attribute name="Variables" BackCol="#F7FE2E"></Attribute>
- <Identifiers CharsStart= "A..Za..z_$" Content = "A..Za..z0..9_">
- <Keyword>
- if else while do for in break continue delete
- next function func exit
- BEGIN END
- </Keyword>
- <Functions>
- atan2
- close cos ctime
- exp
- getline gsub
- index int
- length log
- match
- print printf
- rand
- sin split sprintf sqrt srand sub substr system
- time tolower toupper
- </Functions>
- <Variables>
- ARGC ARGV
- FILENAME FS
- NF NR
- OFS ORS OFMT
- RLENGTH RS RSTART
- </Variables>
- </Identifiers>
- <Token CharsStart="0..9" Content = '0..9' Attribute="NUMBER"> </Token>
- <String Start='"' End='"'></String>
- <Comment Start="#" ></Comment>
- <Block Start="{" End="}" Name="blk_llaves" BackCol="#F7F7C8"></Block>
- <Block Start="do" End="done" Name="blk_do" BackCol="transparent"></Block>
- <Block Start="case" End="esac" Name="blk_ca" BackCol="transparent"></Block>
- </Language>
|