Updated Spanish translation
[anjuta-git-plugin.git] / data / properties / vb.properties
blob2d1cd5fbd5a3e03ac76f38d56228b861d27cb243
1 # Define SciTE settings for VB files.
3 # BAS: Module, FRM: Form, CLS: Class Module, CTL: User Control
4 # PAG: Property Page, DSR: Data Report, DOB: User Document
5 file.patterns.vb=*.vb;*.bas;*.frm;*.cls;*.ctl;*.pag;*.dsr;*.dob
6 # VBS: VBScript, DSM: Visual[ex. Dev] Studio macro
7 file.patterns.wscript=*.vbs;*.dsm
9 # VBP: VB Project, VBG: VB Project Group (ActiveX), MAK: old (VB3) project file, VBW: VB Workspace
10 filter.vb=VB (vb vbp vbs bas frm cls ctl pag dsr dob)|$(file.patterns.vb);$(file.patterns.wscript);*.vbp;*.vbg;*.mak;*.vbw|
12 lexer.$(file.patterns.vb)=vb
13 lexer.$(file.patterns.wscript)=vbscript
15 keywordclass.vb=and begin case call continue do each else elseif end erase \
16 error event exit false for function get gosub goto if implement in load loop lset \
17 me mid new next not nothing on or property raiseevent rem resume return rset \
18 select set stop sub then to true unload until wend while with withevents \
19 attribute alias as boolean byref byte byval const compare currency date declare dim double \
20 enum explicit friend global integer let lib long module object option optional \
21 preserve private property public redim single static string type variant
23 keywordclass.vbnet=addhandler addressof andalso alias and ansi as assembly auto boolean \
24 byref byte byval call case catch cbool cbyte cchar cdate cdec cdbl char cint class \
25 clng cobj const cshort csng cstr ctype date decimal declare default delegate dim do double \
26 each else elseif end enum erase error event exit false finally for friend function get \
27 gettype goto  handles if implements imports in inherits integer interface is let lib like long \
28 loop me mod module mustinherit mustoverride mybase myclass namespace new \
29 next not nothing notinheritable notoverridable object on option optional or \
30 orelse overloads overridable overrides paramarray preserve private property protected public \
31 raiseevent readonly redim rem removehandler resume return select set shadows \
32 shared short single static step stop string structure sub synclock then throw to true try \
33 typeof unicode until variant when while with withevents writeonly xor
35 keywords.$(file.patterns.vb)=$(keywordclass.vbnet)
36 keywords.$(file.patterns.wscript)=$(keywordclass.vb)
38 # Not used here, mostly system statements (files, registry, I/O...),
39 # I am not sure I should include them in the regular statements.
40 keywordclass.vbotherstatements=appactivate beep chdir chdrive close \
41 deletesetting filecopy get input kill line lock unlock lset mid mkdir name \
42 open print put randomize reset rmdir rset savepicture savesetting seek \
43 sendkeys setattr time unload width write
45 comment.block.vb='~
47 # VB styles
48 # White space
49 style.vb.0=fore:#000000,$(font.vbs)
50 # Comment
51 style.vb.1=$(colour.code.comment.line),$(font.code.comment.line)
52 # Number
53 style.vb.2=$(colour.number)
54 # Keyword
55 style.vb.3=$(colour.keyword)
56 # String
57 style.vb.4=$(colour.string)
58 # Preprocessor
59 style.vb.5=$(colour.preproc)
60 # Operator
61 style.vb.6=$(colour.operator)
62 # Identifier
63 style.vb.7=
64 # Date
65 style.vb.8=$(colour.number)
67 # VBScript styles same as VB styles
68 style.vbscript.0=$(style.vb.0)
69 style.vbscript.1=$(style.vb.1)
70 style.vbscript.2=$(style.vb.2)
71 style.vbscript.3=$(style.vb.3)
72 style.vbscript.4=$(style.vb.4)
73 style.vbscript.5=$(style.vb.5)
74 style.vbscript.6=$(style.vb.6)
75 style.vbscript.7=$(style.vb.7)
76 style.vbscript.8=$(style.vb.8)
78 # wscript
79 # normal execute
80 command.go.$(file.patterns.wscript)="$(FilePath)"
81 command.go.subsystem.$(file.patterns.wscript)=2
83 # note we have no real "build"; rather "execute and capture
84 # compiletime and runtime errors"
85 command.build.$(file.patterns.wscript)=cscript "$(FilePath)"
86 command.build.subsystem.$(file.patterns.wscript)=1