├── .gitignore ├── .no-sublime-package ├── AU3_Snippets_Readme.txt ├── AutoIt.sublime-build ├── AutoIt.sublime-settings ├── AutoIt.sublime-syntax ├── AutoIt.tmLanguage ├── Commands └── Default.sublime-commands ├── Comments.tmPreferences ├── Completions ├── CompilerDirectives.sublime-completions ├── Functions.sublime-completions ├── GUIControlStyles.sublime-completions ├── Includes.sublime-completions ├── Keywords.sublime-completions ├── Macros.sublime-completions ├── MsgConstantName.sublime-completions ├── SendKeyList.sublime-completions ├── Snippets.sublime-completions ├── UDFFunctions.sublime-completions └── WindowMessageCodes.sublime-completions ├── Include_Helper.au3 ├── Include_Helper.ico ├── LICENSE ├── Main.sublime-menu ├── README.md ├── autoitbuild.py └── goto-documentation_instructions.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.cache 3 | Include_Helper_Data.txt 4 | -------------------------------------------------------------------------------- /.no-sublime-package: -------------------------------------------------------------------------------- 1 | .no-sublime-package -------------------------------------------------------------------------------- /AU3_Snippets_Readme.txt: -------------------------------------------------------------------------------- 1 | http://www.autoitscript.com/forum/topic/148016-sublimetext/page-3#entry1080276 2 | 3 | The snippets used in this package were initially generated by AutoItScript.com Forum User BugFix. 4 | 5 | Forum User BugFix - "And for easier managment of snippets, i've made the Snippet Editor. In snippets you must escape the dollar sign and the placeholder for cursorpositions are made with curly braces. But it makes a little bit confusing to read: "\$${1:varname}". So i'm using in Snippet Editor the following syntax for this: "$|1:varname|", for lonely placeholders "|1|". It will converted before saving the file." 6 | 7 | http://www.autoitscript.com/forum/topic/148016-sublimetext/page-3#entry1080276 8 | -------------------------------------------------------------------------------- /AutoIt.sublime-build: -------------------------------------------------------------------------------- 1 | { 2 | "target": "autoitbuild", 3 | "selector": "source.autoit", 4 | "variants": [ 5 | { 6 | "name": "Run", 7 | "target": "autoitcompile" 8 | } 9 | ] 10 | 11 | } 12 | -------------------------------------------------------------------------------- /AutoIt.sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | "AutoItExePath":"C:\\Program Files\\AutoIt3\\AutoIt3.exe", 3 | "AutoItCompilerPath": "C:\\Program Files\\AutoIt3\\Aut2Exe\\Aut2exe.exe", 4 | "TidyExePath": "C:\\Program Files\\AutoIt3\\SciTE\\Tidy\\Tidy.exe", 5 | "IncludeHelperAU3Path": "{PACKAGE_PATH}\\AutoItScript\\Include_Helper.au3", 6 | "AutoItInfo": "C:\\Program Files\\AutoIt3\\Au3Info_x64.exe", 7 | "AutoItHelp": "C:\\Program Files\\AutoIt3\\AutoIt.chm", 8 | "word_separators": "./\\()\"'-:,.;<>~!#%^&*|+=[]{}`~?" 9 | } 10 | -------------------------------------------------------------------------------- /AutoIt.sublime-syntax: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- 3 | # http://www.sublimetext.com/docs/3/syntax.html 4 | name: AutoIt Script 5 | file_extensions: 6 | - au3 7 | scope: source.autoit 8 | contexts: 9 | main: 10 | - match: \b(?i:and|byref|case|const|continuecase|continueloop|default|dim|do|else|elseif|endfunc|endif|endselect|endswitch|endwith|enum|exit|exitloop|false|for|func|global|if|in|local|next|not|null|or|redim|return|select|static|step|switch|then|to|true|until|volatile|wend|while|with)\b 11 | scope: keyword.control.autoit 12 | - match: \b(?i:abs|acos|adlibregister|adlibunregister|asc|ascw|asin|assign|atan|autoitsetoption|autoitwingettitle|autoitwinsettitle|beep|binary|binarylen|binarymid|binarytostring|bitand|bitnot|bitor|bitrotate|bitshift|bitxor|blockinput|break|call|cdtray|ceiling|chr|chrw|clipget|clipput|consoleread|consolewrite|consolewriteerror|controlclick|controlcommand|controldisable|controlenable|controlfocus|controlgetfocus|controlgethandle|controlgetpos|controlgettext|controlhide|controllistview|controlmove|controlsend|controlsettext|controlshow|controltreeview|cos|dec|dircopy|dircreate|dirgetsize|dirmove|dirremove|dllcall|dllcalladdress|dllcallbackfree|dllcallbackgetptr|dllcallbackregister|dllclose|dllopen|dllstructcreate|dllstructgetdata|dllstructgetptr|dllstructgetsize|dllstructsetdata|drivegetdrive|drivegetfilesystem|drivegetlabel|drivegetserial|drivegettype|drivemapadd|drivemapdel|drivemapget|drivesetlabel|drivespacefree|drivespacetotal|drivestatus|envget|envset|envupdate|eval|execute|exp|filechangedir|fileclose|filecopy|filecreatentfslink|filecreateshortcut|filedelete|fileexists|filefindfirstfile|filefindnextfile|fileflush|filegetattrib|filegetencoding|filegetlongname|filegetpos|filegetshortcut|filegetshortname|filegetsize|filegettime|filegetversion|fileinstall|filemove|fileopen|fileopendialog|fileread|filereadline|filereadtoarray|filerecycle|filerecycleempty|filesavedialog|fileselectfolder|filesetattrib|filesetend|filesetpos|filesettime|filewrite|filewriteline|floor|ftpsetproxy|funcname|guicreate|guictrlcreateavi|guictrlcreatebutton|guictrlcreatecheckbox|guictrlcreatecombo|guictrlcreatecontextmenu|guictrlcreatedate|guictrlcreatedummy|guictrlcreateedit|guictrlcreategraphic|guictrlcreategroup|guictrlcreateicon|guictrlcreateinput|guictrlcreatelabel|guictrlcreatelist|guictrlcreatelistview|guictrlcreatelistviewitem|guictrlcreatemenu|guictrlcreatemenuitem|guictrlcreatemonthcal|guictrlcreateobj|guictrlcreatepic|guictrlcreateprogress|guictrlcreateradio|guictrlcreateslider|guictrlcreatetab|guictrlcreatetabitem|guictrlcreatetreeview|guictrlcreatetreeviewitem|guictrlcreateupdown|guictrldelete|guictrlgethandle|guictrlgetstate|guictrlread|guictrlrecvmsg|guictrlregisterlistviewsort|guictrlsendmsg|guictrlsendtodummy|guictrlsetbkcolor|guictrlsetcolor|guictrlsetcursor|guictrlsetdata|guictrlsetdefbkcolor|guictrlsetdefcolor|guictrlsetfont|guictrlsetgraphic|guictrlsetimage|guictrlsetlimit|guictrlsetonevent|guictrlsetpos|guictrlsetresizing|guictrlsetstate|guictrlsetstyle|guictrlsettip|guidelete|guigetcursorinfo|guigetmsg|guigetstyle|guiregistermsg|guisetaccelerators|guisetbkcolor|guisetcoord|guisetcursor|guisetfont|guisethelp|guiseticon|guisetonevent|guisetstate|guisetstyle|guistartgroup|guiswitch|hex|hotkeyset|httpsetproxy|httpsetuseragent|hwnd|inetclose|inetget|inetgetinfo|inetgetsize|inetread|inidelete|iniread|inireadsection|inireadsectionnames|inirenamesection|iniwrite|iniwritesection|inputbox|int|isadmin|isarray|isbinary|isbool|isdeclared|isdllstruct|isfloat|isfunc|ishwnd|isint|iskeyword|isnumber|isobj|isptr|isstring|log|memgetstats|mod|mouseclick|mouseclickdrag|mousedown|mousegetcursor|mousegetpos|mousemove|mouseup|mousewheel|msgbox|number|objcreate|objcreateinterface|objevent|objget|objname|onautoitexitregister|onautoitexitunregister|ping|pixelchecksum|pixelgetcolor|pixelsearch|processclose|processexists|processgetstats|processlist|processsetpriority|processwait|processwaitclose|progressoff|progresson|progressset|ptr|random|regdelete|regenumkey|regenumval|regread|regwrite|round|run|runas|runaswait|runwait|send|sendkeepactive|seterror|setextended|shellexecute|shellexecutewait|shutdown|sin|sleep|soundplay|soundsetwavevolume|splashimageon|splashoff|splashtexton|sqrt|srandom|statusbargettext|stderrread|stdinwrite|stdioclose|stdoutread|string|stringaddcr|stringcompare|stringformat|stringfromasciiarray|stringinstr|stringisalnum|stringisalpha|stringisascii|stringisdigit|stringisfloat|stringisint|stringislower|stringisspace|stringisupper|stringisxdigit|stringleft|stringlen|stringlower|stringmid|stringregexp|stringregexpreplace|stringreplace|stringreverse|stringright|stringsplit|stringstripcr|stringstripws|stringtoasciiarray|stringtobinary|stringtrimleft|stringtrimright|stringupper|tan|tcpaccept|tcpclosesocket|tcpconnect|tcplisten|tcpnametoip|tcprecv|tcpsend|tcpshutdown|tcpstartup|timerdiff|timerinit|tooltip|traycreateitem|traycreatemenu|traygetmsg|trayitemdelete|trayitemgethandle|trayitemgetstate|trayitemgettext|trayitemsetonevent|trayitemsetstate|trayitemsettext|traysetclick|trayseticon|traysetonevent|traysetpauseicon|traysetstate|traysettooltip|traytip|ubound|udpbind|udpclosesocket|udpopen|udprecv|udpsend|vargettype|winactivate|winactive|winclose|winexists|winflash|wingetcaretpos|wingetclasslist|wingetclientsize|wingethandle|wingetpos|wingetprocess|wingetstate|wingettext|wingettitle|winkill|winlist|winmenuselectitem|winminimizeall|winminimizeallundo|winmove|winsetontop|winsetstate|winsettitle|winsettrans|winwait|winwaitactive|winwaitclose|winwaitnotactive|opt|udpshutdown|udpstartup)\b 13 | scope: support.function.autoit 14 | - match: \b(?i:_array1dtohistogram|_arrayadd|_arraybinarysearch|_arraycoldelete|_arraycolinsert|_arraycombinations|_arrayconcatenate|_arraydelete|_arraydisplay|_arrayextract|_arrayfindall|_arrayinsert|_arraymax|_arraymaxindex|_arraymin|_arrayminindex|_arraypermute|_arraypop|_arraypush|_arrayreverse|_arraysearch|_arrayshuffle|_arraysort|_arrayswap|_arraytoclip|_arraytostring|_arraytranspose|_arraytrim|_arrayunique|_assert|_choosecolor|_choosefont|_clipboard_changechain|_clipboard_close|_clipboard_countformats|_clipboard_empty|_clipboard_enumformats|_clipboard_formatstr|_clipboard_getdata|_clipboard_getdataex|_clipboard_getformatname|_clipboard_getopenwindow|_clipboard_getowner|_clipboard_getpriorityformat|_clipboard_getsequencenumber|_clipboard_getviewer|_clipboard_isformatavailable|_clipboard_open|_clipboard_registerformat|_clipboard_setdata|_clipboard_setdataex|_clipboard_setviewer|_clipputfile|_colorconverthsltorgb|_colorconvertrgbtohsl|_colorgetblue|_colorgetcolorref|_colorgetgreen|_colorgetred|_colorgetrgb|_colorsetcolorref|_colorsetrgb|_crypt_decryptdata|_crypt_decryptfile|_crypt_derivekey|_crypt_destroykey|_crypt_encryptdata|_crypt_encryptfile|_crypt_genrandom|_crypt_hashdata|_crypt_hashfile|_crypt_shutdown|_crypt_startup|_dateadd|_datedayofweek|_datedaysinmonth|_datediff|_dateisleapyear|_dateisvalid|_datetimeformat|_datetimesplit|_datetodayofweek|_datetodayofweekiso|_datetodayvalue|_datetomonth|_date_time_comparefiletime|_date_time_dosdatetimetoarray|_date_time_dosdatetimetofiletime|_date_time_dosdatetimetostr|_date_time_dosdatetoarray|_date_time_dosdatetostr|_date_time_dostimetoarray|_date_time_dostimetostr|_date_time_encodefiletime|_date_time_encodesystemtime|_date_time_filetimetoarray|_date_time_filetimetodosdatetime|_date_time_filetimetolocalfiletime|_date_time_filetimetostr|_date_time_filetimetosystemtime|_date_time_getfiletime|_date_time_getlocaltime|_date_time_getsystemtime|_date_time_getsystemtimeadjustment|_date_time_getsystemtimeasfiletime|_date_time_getsystemtimes|_date_time_gettickcount|_date_time_gettimezoneinformation|_date_time_localfiletimetofiletime|_date_time_setfiletime|_date_time_setlocaltime|_date_time_setsystemtime|_date_time_setsystemtimeadjustment|_date_time_settimezoneinformation|_date_time_systemtimetoarray|_date_time_systemtimetodatestr|_date_time_systemtimetodatetimestr|_date_time_systemtimetofiletime|_date_time_systemtimetotimestr|_date_time_systemtimetotzspecificlocaltime|_date_time_tzspecificlocaltimetosystemtime|_dayvaluetodate|_debugbugreportenv|_debugcomerror|_debugout|_debugreport|_debugreportex|_debugreportvar|_debugsetup|_degree|_eventlog__backup|_eventlog__clear|_eventlog__close|_eventlog__count|_eventlog__deregistersource|_eventlog__full|_eventlog__notify|_eventlog__oldest|_eventlog__open|_eventlog__openbackup|_eventlog__read|_eventlog__registersource|_eventlog__report|_excel_bookattach|_excel_bookclose|_excel_booklist|_excel_booknew|_excel_bookopen|_excel_bookopentext|_excel_booksave|_excel_booksaveas|_excel_close|_excel_columntoletter|_excel_columntonumber|_excel_convertformula|_excel_export|_excel_filterget|_excel_filterset|_excel_open|_excel_pictureadd|_excel_print|_excel_rangecopypaste|_excel_rangedelete|_excel_rangefind|_excel_rangeinsert|_excel_rangelinkaddremove|_excel_rangeread|_excel_rangereplace|_excel_rangesort|_excel_rangevalidate|_excel_rangewrite|_excel_sheetadd|_excel_sheetcopymove|_excel_sheetdelete|_excel_sheetlist|_filecountlines|_filecreate|_filelisttoarray|_filelisttoarrayrec|_fileprint|_filereadtoarray|_filewritefromarray|_filewritelog|_filewritetoline|_ftp_close|_ftp_command|_ftp_connect|_ftp_decodeinternetstatus|_ftp_dircreate|_ftp_dirdelete|_ftp_dirgetcurrent|_ftp_dirputcontents|_ftp_dirsetcurrent|_ftp_fileclose|_ftp_filedelete|_ftp_fileget|_ftp_filegetsize|_ftp_fileopen|_ftp_fileput|_ftp_fileread|_ftp_filerename|_ftp_filetimelohitostr|_ftp_findfileclose|_ftp_findfilefirst|_ftp_findfilenext|_ftp_getlastresponseinfo|_ftp_listtoarray|_ftp_listtoarray2d|_ftp_listtoarrayex|_ftp_open|_ftp_progressdownload|_ftp_progressupload|_ftp_setstatuscallback|_gdiplus_arrowcapcreate|_gdiplus_arrowcapdispose|_gdiplus_arrowcapgetfillstate|_gdiplus_arrowcapgetheight|_gdiplus_arrowcapgetmiddleinset|_gdiplus_arrowcapgetwidth|_gdiplus_arrowcapsetfillstate|_gdiplus_arrowcapsetheight|_gdiplus_arrowcapsetmiddleinset|_gdiplus_arrowcapsetwidth|_gdiplus_bitmapapplyeffect|_gdiplus_bitmapapplyeffectex|_gdiplus_bitmapclonearea|_gdiplus_bitmapconvertformat|_gdiplus_bitmapcreateapplyeffect|_gdiplus_bitmapcreateapplyeffectex|_gdiplus_bitmapcreatedibfrombitmap|_gdiplus_bitmapcreatefromfile|_gdiplus_bitmapcreatefromgraphics|_gdiplus_bitmapcreatefromhbitmap|_gdiplus_bitmapcreatefromhicon|_gdiplus_bitmapcreatefromhicon32|_gdiplus_bitmapcreatefrommemory|_gdiplus_bitmapcreatefromresource|_gdiplus_bitmapcreatefromscan0|_gdiplus_bitmapcreatefromstream|_gdiplus_bitmapcreatehbitmapfrombitmap|_gdiplus_bitmapdispose|_gdiplus_bitmapgethistogram|_gdiplus_bitmapgethistogramex|_gdiplus_bitmapgethistogramsize|_gdiplus_bitmapgetpixel|_gdiplus_bitmaplockbits|_gdiplus_bitmapsetpixel|_gdiplus_bitmapunlockbits|_gdiplus_brushclone|_gdiplus_brushcreatesolid|_gdiplus_brushdispose|_gdiplus_brushgetsolidcolor|_gdiplus_brushgettype|_gdiplus_brushsetsolidcolor|_gdiplus_colormatrixcreate|_gdiplus_colormatrixcreategrayscale|_gdiplus_colormatrixcreatenegative|_gdiplus_colormatrixcreatesaturation|_gdiplus_colormatrixcreatescale|_gdiplus_colormatrixcreatetranslate|_gdiplus_customlinecapclone|_gdiplus_customlinecapcreate|_gdiplus_customlinecapdispose|_gdiplus_customlinecapgetstrokecaps|_gdiplus_customlinecapsetstrokecaps|_gdiplus_decoders|_gdiplus_decodersgetcount|_gdiplus_decodersgetsize|_gdiplus_drawimagefx|_gdiplus_drawimagefxex|_gdiplus_drawimagepoints|_gdiplus_effectcreate|_gdiplus_effectcreateblur|_gdiplus_effectcreatebrightnesscontrast|_gdiplus_effectcreatecolorbalance|_gdiplus_effectcreatecolorcurve|_gdiplus_effectcreatecolorlut|_gdiplus_effectcreatecolormatrix|_gdiplus_effectcreatehuesaturationlightness|_gdiplus_effectcreatelevels|_gdiplus_effectcreateredeyecorrection|_gdiplus_effectcreatesharpen|_gdiplus_effectcreatetint|_gdiplus_effectdispose|_gdiplus_effectgetparameters|_gdiplus_effectsetparameters|_gdiplus_encoders|_gdiplus_encodersgetclsid|_gdiplus_encodersgetcount|_gdiplus_encodersgetparamlist|_gdiplus_encodersgetparamlistsize|_gdiplus_encodersgetsize|_gdiplus_fontcreate|_gdiplus_fontdispose|_gdiplus_fontfamilycreate|_gdiplus_fontfamilycreatefromcollection|_gdiplus_fontfamilydispose|_gdiplus_fontfamilygetcellascent|_gdiplus_fontfamilygetcelldescent|_gdiplus_fontfamilygetemheight|_gdiplus_fontfamilygetlinespacing|_gdiplus_fontgetheight|_gdiplus_fontprivateaddfont|_gdiplus_fontprivateaddmemoryfont|_gdiplus_fontprivatecollectiondispose|_gdiplus_fontprivatecreatecollection|_gdiplus_graphicsclear|_gdiplus_graphicscreatefromhdc|_gdiplus_graphicscreatefromhwnd|_gdiplus_graphicsdispose|_gdiplus_graphicsdrawarc|_gdiplus_graphicsdrawbezier|_gdiplus_graphicsdrawclosedcurve|_gdiplus_graphicsdrawclosedcurve2|_gdiplus_graphicsdrawcurve|_gdiplus_graphicsdrawcurve2|_gdiplus_graphicsdrawellipse|_gdiplus_graphicsdrawimage|_gdiplus_graphicsdrawimagepointsrect|_gdiplus_graphicsdrawimagerect|_gdiplus_graphicsdrawimagerectrect|_gdiplus_graphicsdrawline|_gdiplus_graphicsdrawpath|_gdiplus_graphicsdrawpie|_gdiplus_graphicsdrawpolygon|_gdiplus_graphicsdrawrect|_gdiplus_graphicsdrawstring|_gdiplus_graphicsdrawstringex|_gdiplus_graphicsfillclosedcurve|_gdiplus_graphicsfillclosedcurve2|_gdiplus_graphicsfillellipse|_gdiplus_graphicsfillpath|_gdiplus_graphicsfillpie|_gdiplus_graphicsfillpolygon|_gdiplus_graphicsfillrect|_gdiplus_graphicsfillregion|_gdiplus_graphicsgetcompositingmode|_gdiplus_graphicsgetcompositingquality|_gdiplus_graphicsgetdc|_gdiplus_graphicsgetinterpolationmode|_gdiplus_graphicsgetsmoothingmode|_gdiplus_graphicsgettransform|_gdiplus_graphicsmeasurecharacterranges|_gdiplus_graphicsmeasurestring|_gdiplus_graphicsreleasedc|_gdiplus_graphicsresetclip|_gdiplus_graphicsresettransform|_gdiplus_graphicsrestore|_gdiplus_graphicsrotatetransform|_gdiplus_graphicssave|_gdiplus_graphicsscaletransform|_gdiplus_graphicssetclippath|_gdiplus_graphicssetcliprect|_gdiplus_graphicssetclipregion|_gdiplus_graphicssetcompositingmode|_gdiplus_graphicssetcompositingquality|_gdiplus_graphicssetinterpolationmode|_gdiplus_graphicssetpixeloffsetmode|_gdiplus_graphicssetsmoothingmode|_gdiplus_graphicssettextrenderinghint|_gdiplus_graphicssettransform|_gdiplus_graphicstransformpoints|_gdiplus_graphicstranslatetransform|_gdiplus_hatchbrushcreate|_gdiplus_hiconcreatefrombitmap|_gdiplus_imageattributescreate|_gdiplus_imageattributesdispose|_gdiplus_imageattributessetcolorkeys|_gdiplus_imageattributessetcolormatrix|_gdiplus_imagedispose|_gdiplus_imagegetdimension|_gdiplus_imagegetflags|_gdiplus_imagegetgraphicscontext|_gdiplus_imagegetheight|_gdiplus_imagegethorizontalresolution|_gdiplus_imagegetpixelformat|_gdiplus_imagegetrawformat|_gdiplus_imagegetthumbnail|_gdiplus_imagegettype|_gdiplus_imagegetverticalresolution|_gdiplus_imagegetwidth|_gdiplus_imageloadfromfile|_gdiplus_imageloadfromstream|_gdiplus_imageresize|_gdiplus_imagerotateflip|_gdiplus_imagesavetofile|_gdiplus_imagesavetofileex|_gdiplus_imagesavetostream|_gdiplus_imagescale|_gdiplus_linebrushcreate|_gdiplus_linebrushcreatefromrect|_gdiplus_linebrushcreatefromrectwithangle|_gdiplus_linebrushgetcolors|_gdiplus_linebrushgetrect|_gdiplus_linebrushmultiplytransform|_gdiplus_linebrushresettransform|_gdiplus_linebrushsetblend|_gdiplus_linebrushsetcolors|_gdiplus_linebrushsetgammacorrection|_gdiplus_linebrushsetlinearblend|_gdiplus_linebrushsetpresetblend|_gdiplus_linebrushsetsigmablend|_gdiplus_linebrushsettransform|_gdiplus_matrixclone|_gdiplus_matrixcreate|_gdiplus_matrixdispose|_gdiplus_matrixgetelements|_gdiplus_matrixinvert|_gdiplus_matrixmultiply|_gdiplus_matrixrotate|_gdiplus_matrixscale|_gdiplus_matrixsetelements|_gdiplus_matrixshear|_gdiplus_matrixtransformpoints|_gdiplus_matrixtranslate|_gdiplus_paletteinitialize|_gdiplus_paramadd|_gdiplus_paraminit|_gdiplus_paramsize|_gdiplus_pathaddarc|_gdiplus_pathaddbezier|_gdiplus_pathaddclosedcurve|_gdiplus_pathaddclosedcurve2|_gdiplus_pathaddcurve|_gdiplus_pathaddcurve2|_gdiplus_pathaddcurve3|_gdiplus_pathaddellipse|_gdiplus_pathaddline|_gdiplus_pathaddline2|_gdiplus_pathaddpath|_gdiplus_pathaddpie|_gdiplus_pathaddpolygon|_gdiplus_pathaddrectangle|_gdiplus_pathaddstring|_gdiplus_pathbrushcreate|_gdiplus_pathbrushcreatefrompath|_gdiplus_pathbrushgetcenterpoint|_gdiplus_pathbrushgetfocusscales|_gdiplus_pathbrushgetpointcount|_gdiplus_pathbrushgetrect|_gdiplus_pathbrushgetwrapmode|_gdiplus_pathbrushmultiplytransform|_gdiplus_pathbrushresettransform|_gdiplus_pathbrushsetblend|_gdiplus_pathbrushsetcentercolor|_gdiplus_pathbrushsetcenterpoint|_gdiplus_pathbrushsetfocusscales|_gdiplus_pathbrushsetgammacorrection|_gdiplus_pathbrushsetlinearblend|_gdiplus_pathbrushsetpresetblend|_gdiplus_pathbrushsetsigmablend|_gdiplus_pathbrushsetsurroundcolor|_gdiplus_pathbrushsetsurroundcolorswithcount|_gdiplus_pathbrushsettransform|_gdiplus_pathbrushsetwrapmode|_gdiplus_pathclone|_gdiplus_pathclosefigure|_gdiplus_pathcreate|_gdiplus_pathcreate2|_gdiplus_pathdispose|_gdiplus_pathflatten|_gdiplus_pathgetdata|_gdiplus_pathgetfillmode|_gdiplus_pathgetlastpoint|_gdiplus_pathgetpointcount|_gdiplus_pathgetpoints|_gdiplus_pathgetworldbounds|_gdiplus_pathisoutlinevisiblepoint|_gdiplus_pathisvisiblepoint|_gdiplus_pathitercreate|_gdiplus_pathiterdispose|_gdiplus_pathitergetsubpathcount|_gdiplus_pathiternextmarkerpath|_gdiplus_pathiternextsubpathpath|_gdiplus_pathiterrewind|_gdiplus_pathreset|_gdiplus_pathreverse|_gdiplus_pathsetfillmode|_gdiplus_pathsetmarker|_gdiplus_pathstartfigure|_gdiplus_pathtransform|_gdiplus_pathwarp|_gdiplus_pathwiden|_gdiplus_pathwindingmodeoutline|_gdiplus_pencreate|_gdiplus_pencreate2|_gdiplus_pendispose|_gdiplus_pengetalignment|_gdiplus_pengetcolor|_gdiplus_pengetcustomendcap|_gdiplus_pengetdashcap|_gdiplus_pengetdashstyle|_gdiplus_pengetendcap|_gdiplus_pengetmiterlimit|_gdiplus_pengetwidth|_gdiplus_pensetalignment|_gdiplus_pensetcolor|_gdiplus_pensetcustomendcap|_gdiplus_pensetdashcap|_gdiplus_pensetdashstyle|_gdiplus_pensetendcap|_gdiplus_pensetlinecap|_gdiplus_pensetlinejoin|_gdiplus_pensetmiterlimit|_gdiplus_pensetstartcap|_gdiplus_pensetwidth|_gdiplus_rectfcreate|_gdiplus_regionclone|_gdiplus_regioncombinepath|_gdiplus_regioncombinerect|_gdiplus_regioncombineregion|_gdiplus_regioncreate|_gdiplus_regioncreatefrompath|_gdiplus_regioncreatefromrect|_gdiplus_regiondispose|_gdiplus_regiongetbounds|_gdiplus_regiongethrgn|_gdiplus_regiontransform|_gdiplus_regiontranslate|_gdiplus_shutdown|_gdiplus_startup|_gdiplus_stringformatcreate|_gdiplus_stringformatdispose|_gdiplus_stringformatgetmeasurablecharacterrangecount|_gdiplus_stringformatsetalign|_gdiplus_stringformatsetlinealign|_gdiplus_stringformatsetmeasurablecharacterranges|_gdiplus_texturecreate|_gdiplus_texturecreate2|_gdiplus_texturecreateia|_getip|_guictrlavi_close|_guictrlavi_create|_guictrlavi_destroy|_guictrlavi_isplaying|_guictrlavi_open|_guictrlavi_openex|_guictrlavi_play|_guictrlavi_seek|_guictrlavi_show|_guictrlavi_stop|_guictrlbutton_click|_guictrlbutton_create|_guictrlbutton_destroy|_guictrlbutton_enable|_guictrlbutton_getcheck|_guictrlbutton_getfocus|_guictrlbutton_getidealsize|_guictrlbutton_getimage|_guictrlbutton_getimagelist|_guictrlbutton_getnote|_guictrlbutton_getnotelength|_guictrlbutton_getsplitinfo|_guictrlbutton_getstate|_guictrlbutton_gettext|_guictrlbutton_gettextmargin|_guictrlbutton_setcheck|_guictrlbutton_setdontclick|_guictrlbutton_setfocus|_guictrlbutton_setimage|_guictrlbutton_setimagelist|_guictrlbutton_setnote|_guictrlbutton_setshield|_guictrlbutton_setsize|_guictrlbutton_setsplitinfo|_guictrlbutton_setstate|_guictrlbutton_setstyle|_guictrlbutton_settext|_guictrlbutton_settextmargin|_guictrlbutton_show|_guictrlcomboboxex_adddir|_guictrlcomboboxex_addstring|_guictrlcomboboxex_beginupdate|_guictrlcomboboxex_create|_guictrlcomboboxex_createsolidbitmap|_guictrlcomboboxex_deletestring|_guictrlcomboboxex_destroy|_guictrlcomboboxex_endupdate|_guictrlcomboboxex_findstringexact|_guictrlcomboboxex_getcomboboxinfo|_guictrlcomboboxex_getcombocontrol|_guictrlcomboboxex_getcount|_guictrlcomboboxex_getcursel|_guictrlcomboboxex_getdroppedcontrolrect|_guictrlcomboboxex_getdroppedcontrolrectex|_guictrlcomboboxex_getdroppedstate|_guictrlcomboboxex_getdroppedwidth|_guictrlcomboboxex_geteditcontrol|_guictrlcomboboxex_geteditsel|_guictrlcomboboxex_getedittext|_guictrlcomboboxex_getextendedstyle|_guictrlcomboboxex_getextendedui|_guictrlcomboboxex_getimagelist|_guictrlcomboboxex_getitem|_guictrlcomboboxex_getitemex|_guictrlcomboboxex_getitemheight|_guictrlcomboboxex_getitemimage|_guictrlcomboboxex_getitemindent|_guictrlcomboboxex_getitemoverlayimage|_guictrlcomboboxex_getitemparam|_guictrlcomboboxex_getitemselectedimage|_guictrlcomboboxex_getitemtext|_guictrlcomboboxex_getitemtextlen|_guictrlcomboboxex_getlist|_guictrlcomboboxex_getlistarray|_guictrlcomboboxex_getlocale|_guictrlcomboboxex_getlocalecountry|_guictrlcomboboxex_getlocalelang|_guictrlcomboboxex_getlocaleprimlang|_guictrlcomboboxex_getlocalesublang|_guictrlcomboboxex_getminvisible|_guictrlcomboboxex_gettopindex|_guictrlcomboboxex_getunicode|_guictrlcomboboxex_initstorage|_guictrlcomboboxex_insertstring|_guictrlcomboboxex_limittext|_guictrlcomboboxex_replaceeditsel|_guictrlcomboboxex_resetcontent|_guictrlcomboboxex_setcursel|_guictrlcomboboxex_setdroppedwidth|_guictrlcomboboxex_seteditsel|_guictrlcomboboxex_setedittext|_guictrlcomboboxex_setextendedstyle|_guictrlcomboboxex_setextendedui|_guictrlcomboboxex_setimagelist|_guictrlcomboboxex_setitem|_guictrlcomboboxex_setitemex|_guictrlcomboboxex_setitemheight|_guictrlcomboboxex_setitemimage|_guictrlcomboboxex_setitemindent|_guictrlcomboboxex_setitemoverlayimage|_guictrlcomboboxex_setitemparam|_guictrlcomboboxex_setitemselectedimage|_guictrlcomboboxex_setminvisible|_guictrlcomboboxex_settopindex|_guictrlcomboboxex_setunicode|_guictrlcomboboxex_showdropdown|_guictrlcombobox_adddir|_guictrlcombobox_addstring|_guictrlcombobox_autocomplete|_guictrlcombobox_beginupdate|_guictrlcombobox_create|_guictrlcombobox_deletestring|_guictrlcombobox_destroy|_guictrlcombobox_endupdate|_guictrlcombobox_findstring|_guictrlcombobox_findstringexact|_guictrlcombobox_getcomboboxinfo|_guictrlcombobox_getcount|_guictrlcombobox_getcuebanner|_guictrlcombobox_getcursel|_guictrlcombobox_getdroppedcontrolrect|_guictrlcombobox_getdroppedcontrolrectex|_guictrlcombobox_getdroppedstate|_guictrlcombobox_getdroppedwidth|_guictrlcombobox_geteditsel|_guictrlcombobox_getedittext|_guictrlcombobox_getextendedui|_guictrlcombobox_gethorizontalextent|_guictrlcombobox_getitemheight|_guictrlcombobox_getlbtext|_guictrlcombobox_getlbtextlen|_guictrlcombobox_getlist|_guictrlcombobox_getlistarray|_guictrlcombobox_getlocale|_guictrlcombobox_getlocalecountry|_guictrlcombobox_getlocalelang|_guictrlcombobox_getlocaleprimlang|_guictrlcombobox_getlocalesublang|_guictrlcombobox_getminvisible|_guictrlcombobox_gettopindex|_guictrlcombobox_initstorage|_guictrlcombobox_insertstring|_guictrlcombobox_limittext|_guictrlcombobox_replaceeditsel|_guictrlcombobox_resetcontent|_guictrlcombobox_selectstring|_guictrlcombobox_setcuebanner|_guictrlcombobox_setcursel|_guictrlcombobox_setdroppedwidth|_guictrlcombobox_seteditsel|_guictrlcombobox_setedittext|_guictrlcombobox_setextendedui|_guictrlcombobox_sethorizontalextent|_guictrlcombobox_setitemheight|_guictrlcombobox_setminvisible|_guictrlcombobox_settopindex|_guictrlcombobox_showdropdown|_guictrldtp_create|_guictrldtp_destroy|_guictrldtp_getmccolor|_guictrldtp_getmcfont|_guictrldtp_getmonthcal|_guictrldtp_getrange|_guictrldtp_getrangeex|_guictrldtp_getsystemtime|_guictrldtp_getsystemtimeex|_guictrldtp_setformat|_guictrldtp_setmccolor|_guictrldtp_setmcfont|_guictrldtp_setrange|_guictrldtp_setrangeex|_guictrldtp_setsystemtime|_guictrldtp_setsystemtimeex|_guictrledit_appendtext|_guictrledit_beginupdate|_guictrledit_canundo|_guictrledit_charfrompos|_guictrledit_create|_guictrledit_destroy|_guictrledit_emptyundobuffer|_guictrledit_endupdate|_guictrledit_find|_guictrledit_fmtlines|_guictrledit_getcuebanner|_guictrledit_getfirstvisibleline|_guictrledit_getlimittext|_guictrledit_getline|_guictrledit_getlinecount|_guictrledit_getmargins|_guictrledit_getmodify|_guictrledit_getpasswordchar|_guictrledit_getrect|_guictrledit_getrectex|_guictrledit_getsel|_guictrledit_gettext|_guictrledit_gettextlen|_guictrledit_hideballoontip|_guictrledit_inserttext|_guictrledit_linefromchar|_guictrledit_lineindex|_guictrledit_linelength|_guictrledit_linescroll|_guictrledit_posfromchar|_guictrledit_replacesel|_guictrledit_scroll|_guictrledit_setcuebanner|_guictrledit_setlimittext|_guictrledit_setmargins|_guictrledit_setmodify|_guictrledit_setpasswordchar|_guictrledit_setreadonly|_guictrledit_setrect|_guictrledit_setrectex|_guictrledit_setrectnp|_guictrledit_setrectnpex|_guictrledit_setsel|_guictrledit_settabstops|_guictrledit_settext|_guictrledit_showballoontip|_guictrledit_undo|_guictrlheader_additem|_guictrlheader_clearfilter|_guictrlheader_clearfilterall|_guictrlheader_create|_guictrlheader_createdragimage|_guictrlheader_deleteitem|_guictrlheader_destroy|_guictrlheader_editfilter|_guictrlheader_getbitmapmargin|_guictrlheader_getimagelist|_guictrlheader_getitem|_guictrlheader_getitemalign|_guictrlheader_getitembitmap|_guictrlheader_getitemcount|_guictrlheader_getitemdisplay|_guictrlheader_getitemflags|_guictrlheader_getitemformat|_guictrlheader_getitemimage|_guictrlheader_getitemorder|_guictrlheader_getitemparam|_guictrlheader_getitemrect|_guictrlheader_getitemrectex|_guictrlheader_getitemtext|_guictrlheader_getitemwidth|_guictrlheader_getorderarray|_guictrlheader_getunicodeformat|_guictrlheader_hittest|_guictrlheader_insertitem|_guictrlheader_layout|_guictrlheader_ordertoindex|_guictrlheader_setbitmapmargin|_guictrlheader_setfilterchangetimeout|_guictrlheader_sethotdivider|_guictrlheader_setimagelist|_guictrlheader_setitem|_guictrlheader_setitemalign|_guictrlheader_setitembitmap|_guictrlheader_setitemdisplay|_guictrlheader_setitemflags|_guictrlheader_setitemformat|_guictrlheader_setitemimage|_guictrlheader_setitemorder|_guictrlheader_setitemparam|_guictrlheader_setitemtext|_guictrlheader_setitemwidth|_guictrlheader_setorderarray|_guictrlheader_setunicodeformat|_guictrlipaddress_clearaddress|_guictrlipaddress_create|_guictrlipaddress_destroy|_guictrlipaddress_get|_guictrlipaddress_getarray|_guictrlipaddress_getex|_guictrlipaddress_isblank|_guictrlipaddress_set|_guictrlipaddress_setarray|_guictrlipaddress_setex|_guictrlipaddress_setfocus|_guictrlipaddress_setfont|_guictrlipaddress_setrange|_guictrlipaddress_showhide|_guictrllistbox_addfile|_guictrllistbox_addstring|_guictrllistbox_beginupdate|_guictrllistbox_clickitem|_guictrllistbox_create|_guictrllistbox_deletestring|_guictrllistbox_destroy|_guictrllistbox_dir|_guictrllistbox_endupdate|_guictrllistbox_findintext|_guictrllistbox_findstring|_guictrllistbox_getanchorindex|_guictrllistbox_getcaretindex|_guictrllistbox_getcount|_guictrllistbox_getcursel|_guictrllistbox_gethorizontalextent|_guictrllistbox_getitemdata|_guictrllistbox_getitemheight|_guictrllistbox_getitemrect|_guictrllistbox_getitemrectex|_guictrllistbox_getlistboxinfo|_guictrllistbox_getlocale|_guictrllistbox_getlocalecountry|_guictrllistbox_getlocalelang|_guictrllistbox_getlocaleprimlang|_guictrllistbox_getlocalesublang|_guictrllistbox_getsel|_guictrllistbox_getselcount|_guictrllistbox_getselitems|_guictrllistbox_getselitemstext|_guictrllistbox_gettext|_guictrllistbox_gettextlen|_guictrllistbox_gettopindex|_guictrllistbox_initstorage|_guictrllistbox_insertstring|_guictrllistbox_itemfrompoint|_guictrllistbox_replacestring|_guictrllistbox_resetcontent|_guictrllistbox_selectstring|_guictrllistbox_selitemrange|_guictrllistbox_selitemrangeex|_guictrllistbox_setanchorindex|_guictrllistbox_setcaretindex|_guictrllistbox_setcolumnwidth|_guictrllistbox_setcursel|_guictrllistbox_sethorizontalextent|_guictrllistbox_setitemdata|_guictrllistbox_setitemheight|_guictrllistbox_setlocale|_guictrllistbox_setsel|_guictrllistbox_settabstops|_guictrllistbox_settopindex|_guictrllistbox_sort|_guictrllistbox_swapstring|_guictrllistbox_updatehscroll|_guictrllistview_addarray|_guictrllistview_addcolumn|_guictrllistview_additem|_guictrllistview_addsubitem|_guictrllistview_approximateviewheight|_guictrllistview_approximateviewrect|_guictrllistview_approximateviewwidth|_guictrllistview_arrange|_guictrllistview_beginupdate|_guictrllistview_canceleditlabel|_guictrllistview_clickitem|_guictrllistview_copyitems|_guictrllistview_create|_guictrllistview_createdragimage|_guictrllistview_createsolidbitmap|_guictrllistview_deleteallitems|_guictrllistview_deletecolumn|_guictrllistview_deleteitem|_guictrllistview_deleteitemsselected|_guictrllistview_destroy|_guictrllistview_drawdragimage|_guictrllistview_editlabel|_guictrllistview_enablegroupview|_guictrllistview_endupdate|_guictrllistview_ensurevisible|_guictrllistview_findintext|_guictrllistview_finditem|_guictrllistview_findnearest|_guictrllistview_findparam|_guictrllistview_findtext|_guictrllistview_getbkcolor|_guictrllistview_getbkimage|_guictrllistview_getcallbackmask|_guictrllistview_getcolumn|_guictrllistview_getcolumncount|_guictrllistview_getcolumnorder|_guictrllistview_getcolumnorderarray|_guictrllistview_getcolumnwidth|_guictrllistview_getcounterpage|_guictrllistview_geteditcontrol|_guictrllistview_getextendedlistviewstyle|_guictrllistview_getfocusedgroup|_guictrllistview_getgroupcount|_guictrllistview_getgroupinfo|_guictrllistview_getgroupinfobyindex|_guictrllistview_getgrouprect|_guictrllistview_getgroupviewenabled|_guictrllistview_getheader|_guictrllistview_gethotcursor|_guictrllistview_gethotitem|_guictrllistview_gethovertime|_guictrllistview_getimagelist|_guictrllistview_getisearchstring|_guictrllistview_getitem|_guictrllistview_getitemchecked|_guictrllistview_getitemcount|_guictrllistview_getitemcut|_guictrllistview_getitemdrophilited|_guictrllistview_getitemex|_guictrllistview_getitemfocused|_guictrllistview_getitemgroupid|_guictrllistview_getitemimage|_guictrllistview_getitemindent|_guictrllistview_getitemparam|_guictrllistview_getitemposition|_guictrllistview_getitempositionx|_guictrllistview_getitempositiony|_guictrllistview_getitemrect|_guictrllistview_getitemrectex|_guictrllistview_getitemselected|_guictrllistview_getitemspacing|_guictrllistview_getitemspacingx|_guictrllistview_getitemspacingy|_guictrllistview_getitemstate|_guictrllistview_getitemstateimage|_guictrllistview_getitemtext|_guictrllistview_getitemtextarray|_guictrllistview_getitemtextstring|_guictrllistview_getnextitem|_guictrllistview_getnumberofworkareas|_guictrllistview_getorigin|_guictrllistview_getoriginx|_guictrllistview_getoriginy|_guictrllistview_getoutlinecolor|_guictrllistview_getselectedcolumn|_guictrllistview_getselectedcount|_guictrllistview_getselectedindices|_guictrllistview_getselectionmark|_guictrllistview_getstringwidth|_guictrllistview_getsubitemrect|_guictrllistview_gettextbkcolor|_guictrllistview_gettextcolor|_guictrllistview_gettooltips|_guictrllistview_gettopindex|_guictrllistview_getunicodeformat|_guictrllistview_getview|_guictrllistview_getviewdetails|_guictrllistview_getviewlarge|_guictrllistview_getviewlist|_guictrllistview_getviewrect|_guictrllistview_getviewsmall|_guictrllistview_getviewtile|_guictrllistview_hidecolumn|_guictrllistview_hittest|_guictrllistview_insertcolumn|_guictrllistview_insertgroup|_guictrllistview_insertitem|_guictrllistview_justifycolumn|_guictrllistview_mapidtoindex|_guictrllistview_mapindextoid|_guictrllistview_redrawitems|_guictrllistview_registersortcallback|_guictrllistview_removeallgroups|_guictrllistview_removegroup|_guictrllistview_scroll|_guictrllistview_setbkcolor|_guictrllistview_setbkimage|_guictrllistview_setcallbackmask|_guictrllistview_setcolumn|_guictrllistview_setcolumnorder|_guictrllistview_setcolumnorderarray|_guictrllistview_setcolumnwidth|_guictrllistview_setextendedlistviewstyle|_guictrllistview_setgroupinfo|_guictrllistview_sethotitem|_guictrllistview_sethovertime|_guictrllistview_seticonspacing|_guictrllistview_setimagelist|_guictrllistview_setitem|_guictrllistview_setitemchecked|_guictrllistview_setitemcount|_guictrllistview_setitemcut|_guictrllistview_setitemdrophilited|_guictrllistview_setitemex|_guictrllistview_setitemfocused|_guictrllistview_setitemgroupid|_guictrllistview_setitemimage|_guictrllistview_setitemindent|_guictrllistview_setitemparam|_guictrllistview_setitemposition|_guictrllistview_setitemposition32|_guictrllistview_setitemselected|_guictrllistview_setitemstate|_guictrllistview_setitemstateimage|_guictrllistview_setitemtext|_guictrllistview_setoutlinecolor|_guictrllistview_setselectedcolumn|_guictrllistview_setselectionmark|_guictrllistview_settextbkcolor|_guictrllistview_settextcolor|_guictrllistview_settooltips|_guictrllistview_setunicodeformat|_guictrllistview_setview|_guictrllistview_setworkareas|_guictrllistview_simplesort|_guictrllistview_sortitems|_guictrllistview_subitemhittest|_guictrllistview_unregistersortcallback|_guictrlmenu_addmenuitem|_guictrlmenu_appendmenu|_guictrlmenu_calculatepopupwindowposition|_guictrlmenu_checkmenuitem|_guictrlmenu_checkradioitem|_guictrlmenu_createmenu|_guictrlmenu_createpopup|_guictrlmenu_deletemenu|_guictrlmenu_destroymenu|_guictrlmenu_drawmenubar|_guictrlmenu_enablemenuitem|_guictrlmenu_finditem|_guictrlmenu_findparent|_guictrlmenu_getitembmp|_guictrlmenu_getitembmpchecked|_guictrlmenu_getitembmpunchecked|_guictrlmenu_getitemchecked|_guictrlmenu_getitemcount|_guictrlmenu_getitemdata|_guictrlmenu_getitemdefault|_guictrlmenu_getitemdisabled|_guictrlmenu_getitemenabled|_guictrlmenu_getitemgrayed|_guictrlmenu_getitemhighlighted|_guictrlmenu_getitemid|_guictrlmenu_getiteminfo|_guictrlmenu_getitemrect|_guictrlmenu_getitemrectex|_guictrlmenu_getitemstate|_guictrlmenu_getitemstateex|_guictrlmenu_getitemsubmenu|_guictrlmenu_getitemtext|_guictrlmenu_getitemtype|_guictrlmenu_getmenu|_guictrlmenu_getmenubackground|_guictrlmenu_getmenubarinfo|_guictrlmenu_getmenucontexthelpid|_guictrlmenu_getmenudata|_guictrlmenu_getmenudefaultitem|_guictrlmenu_getmenuheight|_guictrlmenu_getmenuinfo|_guictrlmenu_getmenustyle|_guictrlmenu_getsystemmenu|_guictrlmenu_insertmenuitem|_guictrlmenu_insertmenuitemex|_guictrlmenu_ismenu|_guictrlmenu_loadmenu|_guictrlmenu_mapaccelerator|_guictrlmenu_menuitemfrompoint|_guictrlmenu_removemenu|_guictrlmenu_setitembitmaps|_guictrlmenu_setitembmp|_guictrlmenu_setitembmpchecked|_guictrlmenu_setitembmpunchecked|_guictrlmenu_setitemchecked|_guictrlmenu_setitemdata|_guictrlmenu_setitemdefault|_guictrlmenu_setitemdisabled|_guictrlmenu_setitemenabled|_guictrlmenu_setitemgrayed|_guictrlmenu_setitemhighlighted|_guictrlmenu_setitemid|_guictrlmenu_setiteminfo|_guictrlmenu_setitemstate|_guictrlmenu_setitemsubmenu|_guictrlmenu_setitemtext|_guictrlmenu_setitemtype|_guictrlmenu_setmenu|_guictrlmenu_setmenubackground|_guictrlmenu_setmenucontexthelpid|_guictrlmenu_setmenudata|_guictrlmenu_setmenudefaultitem|_guictrlmenu_setmenuheight|_guictrlmenu_setmenuinfo|_guictrlmenu_setmenustyle|_guictrlmenu_trackpopupmenu|_guictrlmonthcal_create|_guictrlmonthcal_destroy|_guictrlmonthcal_getcalendarborder|_guictrlmonthcal_getcalendarcount|_guictrlmonthcal_getcolor|_guictrlmonthcal_getcolorarray|_guictrlmonthcal_getcursel|_guictrlmonthcal_getcurselstr|_guictrlmonthcal_getfirstdow|_guictrlmonthcal_getfirstdowstr|_guictrlmonthcal_getmaxselcount|_guictrlmonthcal_getmaxtodaywidth|_guictrlmonthcal_getminreqheight|_guictrlmonthcal_getminreqrect|_guictrlmonthcal_getminreqrectarray|_guictrlmonthcal_getminreqwidth|_guictrlmonthcal_getmonthdelta|_guictrlmonthcal_getmonthrange|_guictrlmonthcal_getmonthrangemax|_guictrlmonthcal_getmonthrangemaxstr|_guictrlmonthcal_getmonthrangemin|_guictrlmonthcal_getmonthrangeminstr|_guictrlmonthcal_getmonthrangespan|_guictrlmonthcal_getrange|_guictrlmonthcal_getrangemax|_guictrlmonthcal_getrangemaxstr|_guictrlmonthcal_getrangemin|_guictrlmonthcal_getrangeminstr|_guictrlmonthcal_getselrange|_guictrlmonthcal_getselrangemax|_guictrlmonthcal_getselrangemaxstr|_guictrlmonthcal_getselrangemin|_guictrlmonthcal_getselrangeminstr|_guictrlmonthcal_gettoday|_guictrlmonthcal_gettodaystr|_guictrlmonthcal_getunicodeformat|_guictrlmonthcal_hittest|_guictrlmonthcal_setcalendarborder|_guictrlmonthcal_setcolor|_guictrlmonthcal_setcursel|_guictrlmonthcal_setdaystate|_guictrlmonthcal_setfirstdow|_guictrlmonthcal_setmaxselcount|_guictrlmonthcal_setmonthdelta|_guictrlmonthcal_setrange|_guictrlmonthcal_setselrange|_guictrlmonthcal_settoday|_guictrlmonthcal_setunicodeformat|_guictrlrebar_addband|_guictrlrebar_addtoolbarband|_guictrlrebar_begindrag|_guictrlrebar_create|_guictrlrebar_deleteband|_guictrlrebar_destroy|_guictrlrebar_dragmove|_guictrlrebar_enddrag|_guictrlrebar_getbandbackcolor|_guictrlrebar_getbandborders|_guictrlrebar_getbandbordersex|_guictrlrebar_getbandchildhandle|_guictrlrebar_getbandchildsize|_guictrlrebar_getbandcount|_guictrlrebar_getbandforecolor|_guictrlrebar_getbandheadersize|_guictrlrebar_getbandid|_guictrlrebar_getbandidealsize|_guictrlrebar_getbandlength|_guictrlrebar_getbandlparam|_guictrlrebar_getbandmargins|_guictrlrebar_getbandmarginsex|_guictrlrebar_getbandrect|_guictrlrebar_getbandrectex|_guictrlrebar_getbandstyle|_guictrlrebar_getbandstylebreak|_guictrlrebar_getbandstylechildedge|_guictrlrebar_getbandstylefixedbmp|_guictrlrebar_getbandstylefixedsize|_guictrlrebar_getbandstylegripperalways|_guictrlrebar_getbandstylehidden|_guictrlrebar_getbandstylehidetitle|_guictrlrebar_getbandstylenogripper|_guictrlrebar_getbandstyletopalign|_guictrlrebar_getbandstyleusechevron|_guictrlrebar_getbandstylevariableheight|_guictrlrebar_getbandtext|_guictrlrebar_getbarheight|_guictrlrebar_getbarinfo|_guictrlrebar_getbkcolor|_guictrlrebar_getcolorscheme|_guictrlrebar_getrowcount|_guictrlrebar_getrowheight|_guictrlrebar_gettextcolor|_guictrlrebar_gettooltips|_guictrlrebar_getunicodeformat|_guictrlrebar_hittest|_guictrlrebar_idtoindex|_guictrlrebar_maximizeband|_guictrlrebar_minimizeband|_guictrlrebar_moveband|_guictrlrebar_setbandbackcolor|_guictrlrebar_setbandforecolor|_guictrlrebar_setbandheadersize|_guictrlrebar_setbandid|_guictrlrebar_setbandidealsize|_guictrlrebar_setbandlength|_guictrlrebar_setbandlparam|_guictrlrebar_setbandstyle|_guictrlrebar_setbandstylebreak|_guictrlrebar_setbandstylechildedge|_guictrlrebar_setbandstylefixedbmp|_guictrlrebar_setbandstylefixedsize|_guictrlrebar_setbandstylegripperalways|_guictrlrebar_setbandstylehidden|_guictrlrebar_setbandstylehidetitle|_guictrlrebar_setbandstylenogripper|_guictrlrebar_setbandstyletopalign|_guictrlrebar_setbandstyleusechevron|_guictrlrebar_setbandstylevariableheight|_guictrlrebar_setbandtext|_guictrlrebar_setbarinfo|_guictrlrebar_setbkcolor|_guictrlrebar_setcolorscheme|_guictrlrebar_settextcolor|_guictrlrebar_settooltips|_guictrlrebar_setunicodeformat|_guictrlrebar_showband|_guictrlrichedit_appendtext|_guictrlrichedit_autodetecturl|_guictrlrichedit_canpaste|_guictrlrichedit_canpastespecial|_guictrlrichedit_canredo|_guictrlrichedit_canundo|_guictrlrichedit_changefontsize|_guictrlrichedit_copy|_guictrlrichedit_create|_guictrlrichedit_cut|_guictrlrichedit_deselect|_guictrlrichedit_destroy|_guictrlrichedit_emptyundobuffer|_guictrlrichedit_findtext|_guictrlrichedit_findtextinrange|_guictrlrichedit_getbkcolor|_guictrlrichedit_getcharattributes|_guictrlrichedit_getcharbkcolor|_guictrlrichedit_getcharcolor|_guictrlrichedit_getcharposfromxy|_guictrlrichedit_getcharposofnextword|_guictrlrichedit_getcharposofpreviousword|_guictrlrichedit_getcharwordbreakinfo|_guictrlrichedit_getfirstcharposonline|_guictrlrichedit_getfont|_guictrlrichedit_getlinecount|_guictrlrichedit_getlinelength|_guictrlrichedit_getlinenumberfromcharpos|_guictrlrichedit_getnextredo|_guictrlrichedit_getnextundo|_guictrlrichedit_getnumberoffirstvisibleline|_guictrlrichedit_getparaalignment|_guictrlrichedit_getparaattributes|_guictrlrichedit_getparaborder|_guictrlrichedit_getparaindents|_guictrlrichedit_getparanumbering|_guictrlrichedit_getparashading|_guictrlrichedit_getparaspacing|_guictrlrichedit_getparatabstops|_guictrlrichedit_getpasswordchar|_guictrlrichedit_getrect|_guictrlrichedit_getscrollpos|_guictrlrichedit_getsel|_guictrlrichedit_getselaa|_guictrlrichedit_getseltext|_guictrlrichedit_getspaceunit|_guictrlrichedit_gettext|_guictrlrichedit_gettextinline|_guictrlrichedit_gettextinrange|_guictrlrichedit_gettextlength|_guictrlrichedit_getversion|_guictrlrichedit_getxyfromcharpos|_guictrlrichedit_getzoom|_guictrlrichedit_gotocharpos|_guictrlrichedit_hideselection|_guictrlrichedit_inserttext|_guictrlrichedit_ismodified|_guictrlrichedit_istextselected|_guictrlrichedit_paste|_guictrlrichedit_pastespecial|_guictrlrichedit_pauseredraw|_guictrlrichedit_redo|_guictrlrichedit_replacetext|_guictrlrichedit_resumeredraw|_guictrlrichedit_scrolllineorpage|_guictrlrichedit_scrolllines|_guictrlrichedit_scrolltocaret|_guictrlrichedit_setbkcolor|_guictrlrichedit_setcharattributes|_guictrlrichedit_setcharbkcolor|_guictrlrichedit_setcharcolor|_guictrlrichedit_seteventmask|_guictrlrichedit_setfont|_guictrlrichedit_setlimitontext|_guictrlrichedit_setmodified|_guictrlrichedit_setparaalignment|_guictrlrichedit_setparaattributes|_guictrlrichedit_setparaborder|_guictrlrichedit_setparaindents|_guictrlrichedit_setparanumbering|_guictrlrichedit_setparashading|_guictrlrichedit_setparaspacing|_guictrlrichedit_setparatabstops|_guictrlrichedit_setpasswordchar|_guictrlrichedit_setreadonly|_guictrlrichedit_setrect|_guictrlrichedit_setscrollpos|_guictrlrichedit_setsel|_guictrlrichedit_setspaceunit|_guictrlrichedit_settabstops|_guictrlrichedit_settext|_guictrlrichedit_setundolimit|_guictrlrichedit_setzoom|_guictrlrichedit_streamfromfile|_guictrlrichedit_streamfromvar|_guictrlrichedit_streamtofile|_guictrlrichedit_streamtovar|_guictrlrichedit_undo|_guictrlslider_clearsel|_guictrlslider_cleartics|_guictrlslider_create|_guictrlslider_destroy|_guictrlslider_getbuddy|_guictrlslider_getchannelrect|_guictrlslider_getchannelrectex|_guictrlslider_getlinesize|_guictrlslider_getlogicaltics|_guictrlslider_getnumtics|_guictrlslider_getpagesize|_guictrlslider_getpos|_guictrlslider_getrange|_guictrlslider_getrangemax|_guictrlslider_getrangemin|_guictrlslider_getsel|_guictrlslider_getselend|_guictrlslider_getselstart|_guictrlslider_getthumblength|_guictrlslider_getthumbrect|_guictrlslider_getthumbrectex|_guictrlslider_gettic|_guictrlslider_getticpos|_guictrlslider_gettooltips|_guictrlslider_getunicodeformat|_guictrlslider_setbuddy|_guictrlslider_setlinesize|_guictrlslider_setpagesize|_guictrlslider_setpos|_guictrlslider_setrange|_guictrlslider_setrangemax|_guictrlslider_setrangemin|_guictrlslider_setsel|_guictrlslider_setselend|_guictrlslider_setselstart|_guictrlslider_setthumblength|_guictrlslider_settic|_guictrlslider_setticfreq|_guictrlslider_settipside|_guictrlslider_settooltips|_guictrlslider_setunicodeformat|_guictrlstatusbar_create|_guictrlstatusbar_destroy|_guictrlstatusbar_embedcontrol|_guictrlstatusbar_getborders|_guictrlstatusbar_getbordershorz|_guictrlstatusbar_getbordersrect|_guictrlstatusbar_getbordersvert|_guictrlstatusbar_getcount|_guictrlstatusbar_getheight|_guictrlstatusbar_geticon|_guictrlstatusbar_getparts|_guictrlstatusbar_getrect|_guictrlstatusbar_getrectex|_guictrlstatusbar_gettext|_guictrlstatusbar_gettextflags|_guictrlstatusbar_gettextlength|_guictrlstatusbar_gettextlengthex|_guictrlstatusbar_gettiptext|_guictrlstatusbar_getunicodeformat|_guictrlstatusbar_getwidth|_guictrlstatusbar_issimple|_guictrlstatusbar_resize|_guictrlstatusbar_setbkcolor|_guictrlstatusbar_seticon|_guictrlstatusbar_setminheight|_guictrlstatusbar_setparts|_guictrlstatusbar_setsimple|_guictrlstatusbar_settext|_guictrlstatusbar_settiptext|_guictrlstatusbar_setunicodeformat|_guictrlstatusbar_showhide|_guictrltab_activatetab|_guictrltab_clicktab|_guictrltab_create|_guictrltab_deleteallitems|_guictrltab_deleteitem|_guictrltab_deselectall|_guictrltab_destroy|_guictrltab_findtab|_guictrltab_getcurfocus|_guictrltab_getcursel|_guictrltab_getdisplayrect|_guictrltab_getdisplayrectex|_guictrltab_getextendedstyle|_guictrltab_getimagelist|_guictrltab_getitem|_guictrltab_getitemcount|_guictrltab_getitemimage|_guictrltab_getitemparam|_guictrltab_getitemrect|_guictrltab_getitemrectex|_guictrltab_getitemstate|_guictrltab_getitemtext|_guictrltab_getrowcount|_guictrltab_gettooltips|_guictrltab_getunicodeformat|_guictrltab_highlightitem|_guictrltab_hittest|_guictrltab_insertitem|_guictrltab_removeimage|_guictrltab_setcurfocus|_guictrltab_setcursel|_guictrltab_setextendedstyle|_guictrltab_setimagelist|_guictrltab_setitem|_guictrltab_setitemimage|_guictrltab_setitemparam|_guictrltab_setitemsize|_guictrltab_setitemstate|_guictrltab_setitemtext|_guictrltab_setmintabwidth|_guictrltab_setpadding|_guictrltab_settooltips|_guictrltab_setunicodeformat|_guictrltoolbar_addbitmap|_guictrltoolbar_addbutton|_guictrltoolbar_addbuttonsep|_guictrltoolbar_addstring|_guictrltoolbar_buttoncount|_guictrltoolbar_checkbutton|_guictrltoolbar_clickaccel|_guictrltoolbar_clickbutton|_guictrltoolbar_clickindex|_guictrltoolbar_commandtoindex|_guictrltoolbar_create|_guictrltoolbar_customize|_guictrltoolbar_deletebutton|_guictrltoolbar_destroy|_guictrltoolbar_enablebutton|_guictrltoolbar_findtoolbar|_guictrltoolbar_getanchorhighlight|_guictrltoolbar_getbitmapflags|_guictrltoolbar_getbuttonbitmap|_guictrltoolbar_getbuttoninfo|_guictrltoolbar_getbuttoninfoex|_guictrltoolbar_getbuttonparam|_guictrltoolbar_getbuttonrect|_guictrltoolbar_getbuttonrectex|_guictrltoolbar_getbuttonsize|_guictrltoolbar_getbuttonstate|_guictrltoolbar_getbuttonstyle|_guictrltoolbar_getbuttontext|_guictrltoolbar_getcolorscheme|_guictrltoolbar_getdisabledimagelist|_guictrltoolbar_getextendedstyle|_guictrltoolbar_gethotimagelist|_guictrltoolbar_gethotitem|_guictrltoolbar_getimagelist|_guictrltoolbar_getinsertmark|_guictrltoolbar_getinsertmarkcolor|_guictrltoolbar_getmaxsize|_guictrltoolbar_getmetrics|_guictrltoolbar_getpadding|_guictrltoolbar_getrows|_guictrltoolbar_getstring|_guictrltoolbar_getstyle|_guictrltoolbar_getstylealtdrag|_guictrltoolbar_getstylecustomerase|_guictrltoolbar_getstyleflat|_guictrltoolbar_getstylelist|_guictrltoolbar_getstyleregisterdrop|_guictrltoolbar_getstyletooltips|_guictrltoolbar_getstyletransparent|_guictrltoolbar_getstylewrapable|_guictrltoolbar_gettextrows|_guictrltoolbar_gettooltips|_guictrltoolbar_getunicodeformat|_guictrltoolbar_hidebutton|_guictrltoolbar_highlightbutton|_guictrltoolbar_hittest|_guictrltoolbar_indextocommand|_guictrltoolbar_insertbutton|_guictrltoolbar_insertmarkhittest|_guictrltoolbar_isbuttonchecked|_guictrltoolbar_isbuttonenabled|_guictrltoolbar_isbuttonhidden|_guictrltoolbar_isbuttonhighlighted|_guictrltoolbar_isbuttonindeterminate|_guictrltoolbar_isbuttonpressed|_guictrltoolbar_loadbitmap|_guictrltoolbar_loadimages|_guictrltoolbar_mapaccelerator|_guictrltoolbar_movebutton|_guictrltoolbar_pressbutton|_guictrltoolbar_setanchorhighlight|_guictrltoolbar_setbitmapsize|_guictrltoolbar_setbuttonbitmap|_guictrltoolbar_setbuttoninfo|_guictrltoolbar_setbuttoninfoex|_guictrltoolbar_setbuttonparam|_guictrltoolbar_setbuttonsize|_guictrltoolbar_setbuttonstate|_guictrltoolbar_setbuttonstyle|_guictrltoolbar_setbuttontext|_guictrltoolbar_setbuttonwidth|_guictrltoolbar_setcmdid|_guictrltoolbar_setcolorscheme|_guictrltoolbar_setdisabledimagelist|_guictrltoolbar_setdrawtextflags|_guictrltoolbar_setextendedstyle|_guictrltoolbar_sethotimagelist|_guictrltoolbar_sethotitem|_guictrltoolbar_setimagelist|_guictrltoolbar_setindent|_guictrltoolbar_setindeterminate|_guictrltoolbar_setinsertmark|_guictrltoolbar_setinsertmarkcolor|_guictrltoolbar_setmaxtextrows|_guictrltoolbar_setmetrics|_guictrltoolbar_setpadding|_guictrltoolbar_setparent|_guictrltoolbar_setrows|_guictrltoolbar_setstyle|_guictrltoolbar_setstylealtdrag|_guictrltoolbar_setstylecustomerase|_guictrltoolbar_setstyleflat|_guictrltoolbar_setstylelist|_guictrltoolbar_setstyleregisterdrop|_guictrltoolbar_setstyletooltips|_guictrltoolbar_setstyletransparent|_guictrltoolbar_setstylewrapable|_guictrltoolbar_settooltips|_guictrltoolbar_setunicodeformat|_guictrltoolbar_setwindowtheme|_guictrltreeview_add|_guictrltreeview_addchild|_guictrltreeview_addchildfirst|_guictrltreeview_addfirst|_guictrltreeview_beginupdate|_guictrltreeview_clickitem|_guictrltreeview_create|_guictrltreeview_createdragimage|_guictrltreeview_createsolidbitmap|_guictrltreeview_delete|_guictrltreeview_deleteall|_guictrltreeview_deletechildren|_guictrltreeview_destroy|_guictrltreeview_displayrect|_guictrltreeview_displayrectex|_guictrltreeview_edittext|_guictrltreeview_endedit|_guictrltreeview_endupdate|_guictrltreeview_ensurevisible|_guictrltreeview_expand|_guictrltreeview_expandedonce|_guictrltreeview_finditem|_guictrltreeview_finditemex|_guictrltreeview_getbkcolor|_guictrltreeview_getbold|_guictrltreeview_getchecked|_guictrltreeview_getchildcount|_guictrltreeview_getchildren|_guictrltreeview_getcount|_guictrltreeview_getcut|_guictrltreeview_getdroptarget|_guictrltreeview_geteditcontrol|_guictrltreeview_getexpanded|_guictrltreeview_getfirstchild|_guictrltreeview_getfirstitem|_guictrltreeview_getfirstvisible|_guictrltreeview_getfocused|_guictrltreeview_getheight|_guictrltreeview_getimageindex|_guictrltreeview_getimagelisticonhandle|_guictrltreeview_getindent|_guictrltreeview_getinsertmarkcolor|_guictrltreeview_getisearchstring|_guictrltreeview_getitembyindex|_guictrltreeview_getitemhandle|_guictrltreeview_getitemparam|_guictrltreeview_getlastchild|_guictrltreeview_getlinecolor|_guictrltreeview_getnext|_guictrltreeview_getnextchild|_guictrltreeview_getnextsibling|_guictrltreeview_getnextvisible|_guictrltreeview_getnormalimagelist|_guictrltreeview_getparenthandle|_guictrltreeview_getparentparam|_guictrltreeview_getprev|_guictrltreeview_getprevchild|_guictrltreeview_getprevsibling|_guictrltreeview_getprevvisible|_guictrltreeview_getscrolltime|_guictrltreeview_getselected|_guictrltreeview_getselectedimageindex|_guictrltreeview_getselection|_guictrltreeview_getsiblingcount|_guictrltreeview_getstate|_guictrltreeview_getstateimageindex|_guictrltreeview_getstateimagelist|_guictrltreeview_gettext|_guictrltreeview_gettextcolor|_guictrltreeview_gettooltips|_guictrltreeview_gettree|_guictrltreeview_getunicodeformat|_guictrltreeview_getvisible|_guictrltreeview_getvisiblecount|_guictrltreeview_hittest|_guictrltreeview_hittestex|_guictrltreeview_hittestitem|_guictrltreeview_index|_guictrltreeview_insertitem|_guictrltreeview_isfirstitem|_guictrltreeview_isparent|_guictrltreeview_level|_guictrltreeview_selectitem|_guictrltreeview_selectitembyindex|_guictrltreeview_setbkcolor|_guictrltreeview_setbold|_guictrltreeview_setchecked|_guictrltreeview_setcheckedbyindex|_guictrltreeview_setchildren|_guictrltreeview_setcut|_guictrltreeview_setdroptarget|_guictrltreeview_setfocused|_guictrltreeview_setheight|_guictrltreeview_seticon|_guictrltreeview_setimageindex|_guictrltreeview_setindent|_guictrltreeview_setinsertmark|_guictrltreeview_setinsertmarkcolor|_guictrltreeview_setitemheight|_guictrltreeview_setitemparam|_guictrltreeview_setlinecolor|_guictrltreeview_setnormalimagelist|_guictrltreeview_setscrolltime|_guictrltreeview_setselected|_guictrltreeview_setselectedimageindex|_guictrltreeview_setstate|_guictrltreeview_setstateimageindex|_guictrltreeview_setstateimagelist|_guictrltreeview_settext|_guictrltreeview_settextcolor|_guictrltreeview_settooltips|_guictrltreeview_setunicodeformat|_guictrltreeview_sort|_guiimagelist_add|_guiimagelist_addbitmap|_guiimagelist_addicon|_guiimagelist_addmasked|_guiimagelist_begindrag|_guiimagelist_copy|_guiimagelist_create|_guiimagelist_destroy|_guiimagelist_destroyicon|_guiimagelist_dragenter|_guiimagelist_dragleave|_guiimagelist_dragmove|_guiimagelist_draw|_guiimagelist_drawex|_guiimagelist_duplicate|_guiimagelist_enddrag|_guiimagelist_getbkcolor|_guiimagelist_geticon|_guiimagelist_geticonheight|_guiimagelist_geticonsize|_guiimagelist_geticonsizeex|_guiimagelist_geticonwidth|_guiimagelist_getimagecount|_guiimagelist_getimageinfoex|_guiimagelist_remove|_guiimagelist_replaceicon|_guiimagelist_setbkcolor|_guiimagelist_seticonsize|_guiimagelist_setimagecount|_guiimagelist_swap|_guiscrollbars_enablescrollbar|_guiscrollbars_getscrollbarinfoex|_guiscrollbars_getscrollbarrect|_guiscrollbars_getscrollbarrgstate|_guiscrollbars_getscrollbarxylinebutton|_guiscrollbars_getscrollbarxythumbbottom|_guiscrollbars_getscrollbarxythumbtop|_guiscrollbars_getscrollinfo|_guiscrollbars_getscrollinfoex|_guiscrollbars_getscrollinfomax|_guiscrollbars_getscrollinfomin|_guiscrollbars_getscrollinfopage|_guiscrollbars_getscrollinfopos|_guiscrollbars_getscrollinfotrackpos|_guiscrollbars_getscrollpos|_guiscrollbars_getscrollrange|_guiscrollbars_init|_guiscrollbars_scrollwindow|_guiscrollbars_setscrollinfo|_guiscrollbars_setscrollinfomax|_guiscrollbars_setscrollinfomin|_guiscrollbars_setscrollinfopage|_guiscrollbars_setscrollinfopos|_guiscrollbars_setscrollrange|_guiscrollbars_showscrollbar|_guitooltip_activate|_guitooltip_addtool|_guitooltip_adjustrect|_guitooltip_bitstottf|_guitooltip_create|_guitooltip_deactivate|_guitooltip_deltool|_guitooltip_destroy|_guitooltip_enumtools|_guitooltip_getbubbleheight|_guitooltip_getbubblesize|_guitooltip_getbubblewidth|_guitooltip_getcurrenttool|_guitooltip_getdelaytime|_guitooltip_getmargin|_guitooltip_getmarginex|_guitooltip_getmaxtipwidth|_guitooltip_gettext|_guitooltip_gettipbkcolor|_guitooltip_gettiptextcolor|_guitooltip_gettitlebitmap|_guitooltip_gettitletext|_guitooltip_gettoolcount|_guitooltip_gettoolinfo|_guitooltip_hittest|_guitooltip_newtoolrect|_guitooltip_pop|_guitooltip_popup|_guitooltip_setdelaytime|_guitooltip_setmargin|_guitooltip_setmaxtipwidth|_guitooltip_settipbkcolor|_guitooltip_settiptextcolor|_guitooltip_settitle|_guitooltip_settoolinfo|_guitooltip_setwindowtheme|_guitooltip_toolexists|_guitooltip_tooltoarray|_guitooltip_trackactivate|_guitooltip_trackposition|_guitooltip_update|_guitooltip_updatetiptext|_hextostring|_ieaction|_ieattach|_iebodyreadhtml|_iebodyreadtext|_iebodywritehtml|_iecreate|_iecreateembedded|_iedocgetobj|_iedocinserthtml|_iedocinserttext|_iedocreadhtml|_iedocwritehtml|_ieerrornotify|_ieformelementcheckboxselect|_ieformelementgetcollection|_ieformelementgetobjbyname|_ieformelementgetvalue|_ieformelementoptionselect|_ieformelementradioselect|_ieformelementsetvalue|_ieformgetcollection|_ieformgetobjbyname|_ieformimageclick|_ieformreset|_ieformsubmit|_ieframegetcollection|_ieframegetobjbyname|_iegetobjbyid|_iegetobjbyname|_ieheadinserteventscript|_ieimgclick|_ieimggetcollection|_ieisframeset|_ielinkclickbyindex|_ielinkclickbytext|_ielinkgetcollection|_ieloadwait|_ieloadwaittimeout|_ienavigate|_iepropertyget|_iepropertyset|_iequit|_ietablegetcollection|_ietablewritetoarray|_ietagnameallgetcollection|_ietagnamegetcollection|_ie_example|_ie_introduction|_ie_versioninfo|_inetexplorercapable|_inetgetsource|_inetmail|_inetsmtpmail|_ispressed|_mathcheckdiv|_max|_memglobalalloc|_memglobalfree|_memgloballock|_memglobalsize|_memglobalunlock|_memmovememory|_memvirtualalloc|_memvirtualallocex|_memvirtualfree|_memvirtualfreeex|_min|_mousetrap|_namedpipes_callnamedpipe|_namedpipes_connectnamedpipe|_namedpipes_createnamedpipe|_namedpipes_createpipe|_namedpipes_disconnectnamedpipe|_namedpipes_getnamedpipehandlestate|_namedpipes_getnamedpipeinfo|_namedpipes_peeknamedpipe|_namedpipes_setnamedpipehandlestate|_namedpipes_transactnamedpipe|_namedpipes_waitnamedpipe|_net_share_connectionenum|_net_share_fileclose|_net_share_fileenum|_net_share_filegetinfo|_net_share_permstr|_net_share_resourcestr|_net_share_sessiondel|_net_share_sessionenum|_net_share_sessiongetinfo|_net_share_shareadd|_net_share_sharecheck|_net_share_sharedel|_net_share_shareenum|_net_share_sharegetinfo|_net_share_sharesetinfo|_net_share_statisticsgetsvr|_net_share_statisticsgetwrk|_now|_nowcalc|_nowcalcdate|_nowdate|_nowtime|_pathfull|_pathgetrelative|_pathmake|_pathsplit|_processgetname|_processgetpriority|_radian|_replacestringinfile|_rundos|_screencapture_capture|_screencapture_capturewnd|_screencapture_saveimage|_screencapture_setbmpformat|_screencapture_setjpgquality|_screencapture_settifcolordepth|_screencapture_settifcompression|_security__adjusttokenprivileges|_security__createprocesswithtoken|_security__duplicatetokenex|_security__getaccountsid|_security__getlengthsid|_security__gettokeninformation|_security__impersonateself|_security__isvalidsid|_security__lookupaccountname|_security__lookupaccountsid|_security__lookupprivilegevalue|_security__openprocesstoken|_security__openthreadtoken|_security__openthreadtokenex|_security__setprivilege|_security__settokeninformation|_security__sidtostringsid|_security__sidtypestr|_security__stringsidtosid|_sendmessage|_sendmessagea|_setdate|_settime|_singleton|_soundclose|_soundlength|_soundopen|_soundpause|_soundplay|_soundpos|_soundresume|_soundseek|_soundstatus|_soundstop|_sqlite_changes|_sqlite_close|_sqlite_display2dresult|_sqlite_encode|_sqlite_errcode|_sqlite_errmsg|_sqlite_escape|_sqlite_exec|_sqlite_fastencode|_sqlite_fastescape|_sqlite_fetchdata|_sqlite_fetchnames|_sqlite_gettable|_sqlite_gettable2d|_sqlite_lastinsertrowid|_sqlite_libversion|_sqlite_open|_sqlite_query|_sqlite_queryfinalize|_sqlite_queryreset|_sqlite_querysinglerow|_sqlite_safemode|_sqlite_settimeout|_sqlite_shutdown|_sqlite_sqliteexe|_sqlite_startup|_sqlite_totalchanges|_stringbetween|_stringexplode|_stringinsert|_stringproper|_stringrepeat|_stringtitlecase|_stringtohex|_tcpiptoname|_tempfile|_tickstotime|_timer_diff|_timer_getidletime|_timer_gettimerid|_timer_init|_timer_killalltimers|_timer_killtimer|_timer_settimer|_timetoticks|_versioncompare|_viclose|_viexeccommand|_vifindgpib|_vigpibbusreset|_vigtl|_viinteractivecontrol|_viopen|_visetattribute|_visettimeout|_weeknumberiso|_winapi_abortpath|_winapi_activatekeyboardlayout|_winapi_addclipboardformatlistener|_winapi_addfontmemresourceex|_winapi_addfontresourceex|_winapi_addiconoverlay|_winapi_addicontransparency|_winapi_addmrustring|_winapi_adjustbitmap|_winapi_adjusttokenprivileges|_winapi_adjustwindowrectex|_winapi_alphablend|_winapi_anglearc|_winapi_animatewindow|_winapi_arc|_winapi_arcto|_winapi_arraytostruct|_winapi_assignprocesstojobobject|_winapi_assocgetperceivedtype|_winapi_assocquerystring|_winapi_attachconsole|_winapi_attachthreadinput|_winapi_backupread|_winapi_backupreadabort|_winapi_backupseek|_winapi_backupwrite|_winapi_backupwriteabort|_winapi_beep|_winapi_beginbufferedpaint|_winapi_begindeferwindowpos|_winapi_beginpaint|_winapi_beginpath|_winapi_beginupdateresource|_winapi_bitblt|_winapi_bringwindowtotop|_winapi_broadcastsystemmessage|_winapi_browseforfolderdlg|_winapi_bufferedpaintclear|_winapi_bufferedpaintinit|_winapi_bufferedpaintsetalpha|_winapi_bufferedpaintuninit|_winapi_callnexthookex|_winapi_callwindowproc|_winapi_callwindowprocw|_winapi_cascadewindows|_winapi_changewindowmessagefilterex|_winapi_chartooem|_winapi_childwindowfrompointex|_winapi_clienttoscreen|_winapi_clipcursor|_winapi_closedesktop|_winapi_closeenhmetafile|_winapi_closefigure|_winapi_closehandle|_winapi_closethemedata|_winapi_closewindow|_winapi_closewindowstation|_winapi_clsidfromprogid|_winapi_coinitialize|_winapi_coloradjustluma|_winapi_colorhlstorgb|_winapi_colorrgbtohls|_winapi_combinergn|_winapi_combinetransform|_winapi_commandlinetoargv|_winapi_commdlgextendederror|_winapi_commdlgextendederrorex|_winapi_comparestring|_winapi_compressbitmapbits|_winapi_compressbuffer|_winapi_computecrc32|_winapi_confirmcredentials|_winapi_copybitmap|_winapi_copycursor|_winapi_copyenhmetafile|_winapi_copyfileex|_winapi_copyicon|_winapi_copyimage|_winapi_copyrect|_winapi_copystruct|_winapi_cotaskmemalloc|_winapi_cotaskmemfree|_winapi_cotaskmemrealloc|_winapi_couninitialize|_winapi_create32bithbitmap|_winapi_create32bithicon|_winapi_createandbitmap|_winapi_createbitmap|_winapi_createbitmapindirect|_winapi_createbrushindirect|_winapi_createbuffer|_winapi_createbufferfromstruct|_winapi_createcaret|_winapi_createcoloradjustment|_winapi_createcompatiblebitmap|_winapi_createcompatiblebitmapex|_winapi_createcompatibledc|_winapi_createdesktop|_winapi_createdib|_winapi_createdibcolortable|_winapi_createdibitmap|_winapi_createdibsection|_winapi_createdirectory|_winapi_createdirectoryex|_winapi_createellipticrgn|_winapi_createemptyicon|_winapi_createenhmetafile|_winapi_createevent|_winapi_createfile|_winapi_createfileex|_winapi_createfilemapping|_winapi_createfont|_winapi_createfontex|_winapi_createfontindirect|_winapi_createguid|_winapi_createhardlink|_winapi_createicon|_winapi_createiconfromresourceex|_winapi_createiconindirect|_winapi_createjobobject|_winapi_createmargins|_winapi_createmrulist|_winapi_createmutex|_winapi_createnullrgn|_winapi_createnumberformatinfo|_winapi_createobjectid|_winapi_createpen|_winapi_createpoint|_winapi_createpolygonrgn|_winapi_createprocess|_winapi_createprocesswithtoken|_winapi_createrect|_winapi_createrectex|_winapi_createrectrgn|_winapi_createrectrgnindirect|_winapi_createroundrectrgn|_winapi_createsemaphore|_winapi_createsize|_winapi_createsolidbitmap|_winapi_createsolidbrush|_winapi_createstreamonhglobal|_winapi_createstring|_winapi_createsymboliclink|_winapi_createtransform|_winapi_createwindowex|_winapi_createwindowstation|_winapi_decompressbuffer|_winapi_decryptfile|_winapi_deferwindowpos|_winapi_definedosdevice|_winapi_defrawinputproc|_winapi_defsubclassproc|_winapi_defwindowproc|_winapi_defwindowprocw|_winapi_deletedc|_winapi_deleteenhmetafile|_winapi_deletefile|_winapi_deleteobject|_winapi_deleteobjectid|_winapi_deletevolumemountpoint|_winapi_deregistershellhookwindow|_winapi_destroycaret|_winapi_destroycursor|_winapi_destroyicon|_winapi_destroywindow|_winapi_deviceiocontrol|_winapi_displaystruct|_winapi_dllgetversion|_winapi_dllinstall|_winapi_dlluninstall|_winapi_dptolp|_winapi_dragacceptfiles|_winapi_dragfinish|_winapi_dragqueryfileex|_winapi_dragquerypoint|_winapi_drawanimatedrects|_winapi_drawbitmap|_winapi_drawedge|_winapi_drawfocusrect|_winapi_drawframecontrol|_winapi_drawicon|_winapi_drawiconex|_winapi_drawline|_winapi_drawshadowtext|_winapi_drawtext|_winapi_drawthemebackground|_winapi_drawthemeedge|_winapi_drawthemeicon|_winapi_drawthemeparentbackground|_winapi_drawthemetext|_winapi_drawthemetextex|_winapi_duplicateencryptioninfofile|_winapi_duplicatehandle|_winapi_duplicatetokenex|_winapi_dwmdefwindowproc|_winapi_dwmenableblurbehindwindow|_winapi_dwmenablecomposition|_winapi_dwmextendframeintoclientarea|_winapi_dwmgetcolorizationcolor|_winapi_dwmgetcolorizationparameters|_winapi_dwmgetwindowattribute|_winapi_dwminvalidateiconicbitmaps|_winapi_dwmiscompositionenabled|_winapi_dwmquerythumbnailsourcesize|_winapi_dwmregisterthumbnail|_winapi_dwmsetcolorizationparameters|_winapi_dwmseticoniclivepreviewbitmap|_winapi_dwmseticonicthumbnail|_winapi_dwmsetwindowattribute|_winapi_dwmunregisterthumbnail|_winapi_dwmupdatethumbnailproperties|_winapi_dwordtofloat|_winapi_dwordtoint|_winapi_ejectmedia|_winapi_ellipse|_winapi_emptyworkingset|_winapi_enablewindow|_winapi_encryptfile|_winapi_encryptiondisable|_winapi_endbufferedpaint|_winapi_enddeferwindowpos|_winapi_endpaint|_winapi_endpath|_winapi_endupdateresource|_winapi_enumchildprocess|_winapi_enumchildwindows|_winapi_enumdesktops|_winapi_enumdesktopwindows|_winapi_enumdevicedrivers|_winapi_enumdisplaydevices|_winapi_enumdisplaymonitors|_winapi_enumdisplaysettings|_winapi_enumdllproc|_winapi_enumfiles|_winapi_enumfilestreams|_winapi_enumfontfamilies|_winapi_enumhardlinks|_winapi_enummrulist|_winapi_enumpagefiles|_winapi_enumprocesshandles|_winapi_enumprocessmodules|_winapi_enumprocessthreads|_winapi_enumprocesswindows|_winapi_enumrawinputdevices|_winapi_enumresourcelanguages|_winapi_enumresourcenames|_winapi_enumresourcetypes|_winapi_enumsystemgeoid|_winapi_enumsystemlocales|_winapi_enumuilanguages|_winapi_enumwindows|_winapi_enumwindowspopup|_winapi_enumwindowstations|_winapi_enumwindowstop|_winapi_equalmemory|_winapi_equalrect|_winapi_equalrgn|_winapi_excludecliprect|_winapi_expandenvironmentstrings|_winapi_extcreatepen|_winapi_extcreateregion|_winapi_extfloodfill|_winapi_extracticon|_winapi_extracticonex|_winapi_extselectcliprgn|_winapi_fatalappexit|_winapi_fatalexit|_winapi_fileencryptionstatus|_winapi_fileexists|_winapi_fileiconinit|_winapi_fileinuse|_winapi_fillmemory|_winapi_fillpath|_winapi_fillrect|_winapi_fillrgn|_winapi_findclose|_winapi_findclosechangenotification|_winapi_findexecutable|_winapi_findfirstchangenotification|_winapi_findfirstfile|_winapi_findfirstfilename|_winapi_findfirststream|_winapi_findnextchangenotification|_winapi_findnextfile|_winapi_findnextfilename|_winapi_findnextstream|_winapi_findresource|_winapi_findresourceex|_winapi_findtextdlg|_winapi_findwindow|_winapi_flashwindow|_winapi_flashwindowex|_winapi_flattenpath|_winapi_floattodword|_winapi_floattoint|_winapi_flushfilebuffers|_winapi_flushfrbuffer|_winapi_flushviewoffile|_winapi_formatdrivedlg|_winapi_formatmessage|_winapi_framerect|_winapi_framergn|_winapi_freelibrary|_winapi_freememory|_winapi_freemrulist|_winapi_freeresource|_winapi_gdicomment|_winapi_getactivewindow|_winapi_getallusersprofiledirectory|_winapi_getancestor|_winapi_getapplicationrestartsettings|_winapi_getarcdirection|_winapi_getasynckeystate|_winapi_getbinarytype|_winapi_getbitmapbits|_winapi_getbitmapdimension|_winapi_getbitmapdimensionex|_winapi_getbkcolor|_winapi_getbkmode|_winapi_getboundsrect|_winapi_getbrushorg|_winapi_getbufferedpaintbits|_winapi_getbufferedpaintdc|_winapi_getbufferedpainttargetdc|_winapi_getbufferedpainttargetrect|_winapi_getbvalue|_winapi_getcaretblinktime|_winapi_getcaretpos|_winapi_getcdtype|_winapi_getclassinfoex|_winapi_getclasslongex|_winapi_getclassname|_winapi_getclientheight|_winapi_getclientrect|_winapi_getclientwidth|_winapi_getclipboardsequencenumber|_winapi_getclipbox|_winapi_getclipcursor|_winapi_getcliprgn|_winapi_getcoloradjustment|_winapi_getcompressedfilesize|_winapi_getcompression|_winapi_getconnecteddlg|_winapi_getcurrentdirectory|_winapi_getcurrenthwprofile|_winapi_getcurrentobject|_winapi_getcurrentposition|_winapi_getcurrentprocess|_winapi_getcurrentprocessexplicitappusermodelid|_winapi_getcurrentprocessid|_winapi_getcurrentthemename|_winapi_getcurrentthread|_winapi_getcurrentthreadid|_winapi_getcursor|_winapi_getcursorinfo|_winapi_getdateformat|_winapi_getdc|_winapi_getdcex|_winapi_getdefaultprinter|_winapi_getdefaultuserprofiledirectory|_winapi_getdesktopwindow|_winapi_getdevicecaps|_winapi_getdevicedriverbasename|_winapi_getdevicedriverfilename|_winapi_getdevicegammaramp|_winapi_getdibcolortable|_winapi_getdibits|_winapi_getdiskfreespaceex|_winapi_getdlgctrlid|_winapi_getdlgitem|_winapi_getdlldirectory|_winapi_getdrivebustype|_winapi_getdrivegeometryex|_winapi_getdrivenumber|_winapi_getdrivetype|_winapi_getdurationformat|_winapi_geteffectiveclientrect|_winapi_getenhmetafile|_winapi_getenhmetafilebits|_winapi_getenhmetafiledescription|_winapi_getenhmetafiledimension|_winapi_getenhmetafileheader|_winapi_geterrormessage|_winapi_geterrormode|_winapi_getexitcodeprocess|_winapi_getextended|_winapi_getfileattributes|_winapi_getfileid|_winapi_getfileinformationbyhandle|_winapi_getfileinformationbyhandleex|_winapi_getfilepointerex|_winapi_getfilesizeex|_winapi_getfilesizeondisk|_winapi_getfiletitle|_winapi_getfiletype|_winapi_getfileversioninfo|_winapi_getfinalpathnamebyhandle|_winapi_getfinalpathnamebyhandleex|_winapi_getfocus|_winapi_getfontmemoryresourceinfo|_winapi_getfontname|_winapi_getfontresourceinfo|_winapi_getforegroundwindow|_winapi_getfrbuffer|_winapi_getfullpathname|_winapi_getgeoinfo|_winapi_getglyphoutline|_winapi_getgraphicsmode|_winapi_getguiresources|_winapi_getguithreadinfo|_winapi_getgvalue|_winapi_gethandleinformation|_winapi_gethglobalfromstream|_winapi_geticondimension|_winapi_geticoninfo|_winapi_geticoninfoex|_winapi_getidletime|_winapi_getkeyboardlayout|_winapi_getkeyboardlayoutlist|_winapi_getkeyboardstate|_winapi_getkeyboardtype|_winapi_getkeynametext|_winapi_getkeystate|_winapi_getlastactivepopup|_winapi_getlasterror|_winapi_getlasterrormessage|_winapi_getlayeredwindowattributes|_winapi_getlocaleinfo|_winapi_getlogicaldrives|_winapi_getmapmode|_winapi_getmemorysize|_winapi_getmessageextrainfo|_winapi_getmodulefilenameex|_winapi_getmodulehandle|_winapi_getmodulehandleex|_winapi_getmoduleinformation|_winapi_getmonitorinfo|_winapi_getmousepos|_winapi_getmouseposx|_winapi_getmouseposy|_winapi_getmuilanguage|_winapi_getnumberformat|_winapi_getobject|_winapi_getobjectid|_winapi_getobjectinfobyhandle|_winapi_getobjectnamebyhandle|_winapi_getobjecttype|_winapi_getopenfilename|_winapi_getoutlinetextmetrics|_winapi_getoverlappedresult|_winapi_getparent|_winapi_getparentprocess|_winapi_getperformanceinfo|_winapi_getpetype|_winapi_getphysicallyinstalledsystemmemory|_winapi_getpixel|_winapi_getpolyfillmode|_winapi_getposfromrect|_winapi_getpriorityclass|_winapi_getprocaddress|_winapi_getprocessaffinitymask|_winapi_getprocesscommandline|_winapi_getprocessfilename|_winapi_getprocesshandlecount|_winapi_getprocessid|_winapi_getprocessiocounters|_winapi_getprocessmemoryinfo|_winapi_getprocessname|_winapi_getprocessshutdownparameters|_winapi_getprocesstimes|_winapi_getprocessuser|_winapi_getprocesswindowstation|_winapi_getprocessworkingdirectory|_winapi_getprofilesdirectory|_winapi_getpwrcapabilities|_winapi_getrawinputbuffer|_winapi_getrawinputbufferlength|_winapi_getrawinputdata|_winapi_getrawinputdeviceinfo|_winapi_getregiondata|_winapi_getregisteredrawinputdevices|_winapi_getregkeynamebyhandle|_winapi_getrgnbox|_winapi_getrop2|_winapi_getrvalue|_winapi_getsavefilename|_winapi_getshellwindow|_winapi_getstartupinfo|_winapi_getstdhandle|_winapi_getstockobject|_winapi_getstretchbltmode|_winapi_getstring|_winapi_getsyscolor|_winapi_getsyscolorbrush|_winapi_getsystemdefaultlangid|_winapi_getsystemdefaultlcid|_winapi_getsystemdefaultuilanguage|_winapi_getsystemdeppolicy|_winapi_getsysteminfo|_winapi_getsystemmetrics|_winapi_getsystempowerstatus|_winapi_getsystemtimes|_winapi_getsystemwow64directory|_winapi_gettabbedtextextent|_winapi_gettempfilename|_winapi_gettextalign|_winapi_gettextcharacterextra|_winapi_gettextcolor|_winapi_gettextextentpoint32|_winapi_gettextface|_winapi_gettextmetrics|_winapi_getthemeappproperties|_winapi_getthemebackgroundcontentrect|_winapi_getthemebackgroundextent|_winapi_getthemebackgroundregion|_winapi_getthemebitmap|_winapi_getthemebool|_winapi_getthemecolor|_winapi_getthemedocumentationproperty|_winapi_getthemeenumvalue|_winapi_getthemefilename|_winapi_getthemefont|_winapi_getthemeint|_winapi_getthememargins|_winapi_getthememetric|_winapi_getthemepartsize|_winapi_getthemeposition|_winapi_getthemepropertyorigin|_winapi_getthemerect|_winapi_getthemestring|_winapi_getthemesysbool|_winapi_getthemesyscolor|_winapi_getthemesyscolorbrush|_winapi_getthemesysfont|_winapi_getthemesysint|_winapi_getthemesyssize|_winapi_getthemesysstring|_winapi_getthemetextextent|_winapi_getthemetextmetrics|_winapi_getthemetransitionduration|_winapi_getthreaddesktop|_winapi_getthreaderrormode|_winapi_getthreadlocale|_winapi_getthreaduilanguage|_winapi_gettickcount|_winapi_gettickcount64|_winapi_gettimeformat|_winapi_gettopwindow|_winapi_getudfcolormode|_winapi_getupdaterect|_winapi_getupdatergn|_winapi_getuserdefaultlangid|_winapi_getuserdefaultlcid|_winapi_getuserdefaultuilanguage|_winapi_getusergeoid|_winapi_getuserobjectinformation|_winapi_getversion|_winapi_getversionex|_winapi_getvolumeinformation|_winapi_getvolumeinformationbyhandle|_winapi_getvolumenameforvolumemountpoint|_winapi_getwindow|_winapi_getwindowdc|_winapi_getwindowdisplayaffinity|_winapi_getwindowext|_winapi_getwindowfilename|_winapi_getwindowheight|_winapi_getwindowinfo|_winapi_getwindowlong|_winapi_getwindoworg|_winapi_getwindowplacement|_winapi_getwindowrect|_winapi_getwindowrgn|_winapi_getwindowrgnbox|_winapi_getwindowsubclass|_winapi_getwindowtext|_winapi_getwindowtheme|_winapi_getwindowthreadprocessid|_winapi_getwindowwidth|_winapi_getworkarea|_winapi_getworldtransform|_winapi_getxyfrompoint|_winapi_globalmemorystatus|_winapi_gradientfill|_winapi_guidfromstring|_winapi_guidfromstringex|_winapi_hashdata|_winapi_hashstring|_winapi_hibyte|_winapi_hidecaret|_winapi_hidword|_winapi_hiword|_winapi_inflaterect|_winapi_initmuilanguage|_winapi_inprocess|_winapi_intersectcliprect|_winapi_intersectrect|_winapi_inttodword|_winapi_inttofloat|_winapi_invalidaterect|_winapi_invalidatergn|_winapi_invertandbitmap|_winapi_invertcolor|_winapi_invertrect|_winapi_invertrgn|_winapi_ioctl|_winapi_isalphabitmap|_winapi_isbadcodeptr|_winapi_isbadreadptr|_winapi_isbadstringptr|_winapi_isbadwriteptr|_winapi_ischild|_winapi_isclassname|_winapi_isdooropen|_winapi_iselevated|_winapi_ishungappwindow|_winapi_isiconic|_winapi_isinternetconnected|_winapi_isloadkblayout|_winapi_ismemory|_winapi_isnameinexpression|_winapi_isnetworkalive|_winapi_ispathshared|_winapi_isprocessinjob|_winapi_isprocessorfeaturepresent|_winapi_isrectempty|_winapi_isthemeactive|_winapi_isthemebackgroundpartiallytransparent|_winapi_isthemepartdefined|_winapi_isvalidlocale|_winapi_iswindow|_winapi_iswindowenabled|_winapi_iswindowunicode|_winapi_iswindowvisible|_winapi_iswow64process|_winapi_iswritable|_winapi_iszoomed|_winapi_keybd_event|_winapi_killtimer|_winapi_linedda|_winapi_lineto|_winapi_loadbitmap|_winapi_loadcursor|_winapi_loadcursorfromfile|_winapi_loadicon|_winapi_loadiconmetric|_winapi_loadiconwithscaledown|_winapi_loadimage|_winapi_loadindirectstring|_winapi_loadkeyboardlayout|_winapi_loadlibrary|_winapi_loadlibraryex|_winapi_loadmedia|_winapi_loadresource|_winapi_loadshell32icon|_winapi_loadstring|_winapi_loadstringex|_winapi_lobyte|_winapi_localfree|_winapi_lockdevice|_winapi_lockfile|_winapi_lockresource|_winapi_lockwindowupdate|_winapi_lockworkstation|_winapi_lodword|_winapi_longmid|_winapi_lookupiconidfromdirectoryex|_winapi_loword|_winapi_lptodp|_winapi_makelangid|_winapi_makelcid|_winapi_makelong|_winapi_makeqword|_winapi_makeword|_winapi_mapviewoffile|_winapi_mapvirtualkey|_winapi_maskblt|_winapi_messagebeep|_winapi_messageboxcheck|_winapi_messageboxindirect|_winapi_mirroricon|_winapi_modifyworldtransform|_winapi_monitorfrompoint|_winapi_monitorfromrect|_winapi_monitorfromwindow|_winapi_mouse_event|_winapi_movefileex|_winapi_movememory|_winapi_moveto|_winapi_movetoex|_winapi_movewindow|_winapi_msgbox|_winapi_muldiv|_winapi_multibytetowidechar|_winapi_multibytetowidecharex|_winapi_ntstatustodoserror|_winapi_oemtochar|_winapi_offsetcliprgn|_winapi_offsetpoints|_winapi_offsetrect|_winapi_offsetrgn|_winapi_offsetwindoworg|_winapi_opendesktop|_winapi_openfilebyid|_winapi_openfiledlg|_winapi_openfilemapping|_winapi_openicon|_winapi_openinputdesktop|_winapi_openjobobject|_winapi_openmutex|_winapi_openprocess|_winapi_openprocesstoken|_winapi_opensemaphore|_winapi_openthemedata|_winapi_openwindowstation|_winapi_pagesetupdlg|_winapi_paintdesktop|_winapi_paintrgn|_winapi_parseurl|_winapi_parseusername|_winapi_patblt|_winapi_pathaddbackslash|_winapi_pathaddextension|_winapi_pathappend|_winapi_pathbuildroot|_winapi_pathcanonicalize|_winapi_pathcommonprefix|_winapi_pathcompactpath|_winapi_pathcompactpathex|_winapi_pathcreatefromurl|_winapi_pathfindextension|_winapi_pathfindfilename|_winapi_pathfindnextcomponent|_winapi_pathfindonpath|_winapi_pathgetargs|_winapi_pathgetchartype|_winapi_pathgetdrivenumber|_winapi_pathiscontenttype|_winapi_pathisdirectory|_winapi_pathisdirectoryempty|_winapi_pathisexe|_winapi_pathisfilespec|_winapi_pathislfnfilespec|_winapi_pathisrelative|_winapi_pathisroot|_winapi_pathissameroot|_winapi_pathissystemfolder|_winapi_pathisunc|_winapi_pathisuncserver|_winapi_pathisuncservershare|_winapi_pathmakesystemfolder|_winapi_pathmatchspec|_winapi_pathparseiconlocation|_winapi_pathrelativepathto|_winapi_pathremoveargs|_winapi_pathremovebackslash|_winapi_pathremoveextension|_winapi_pathremovefilespec|_winapi_pathrenameextension|_winapi_pathsearchandqualify|_winapi_pathskiproot|_winapi_pathstrippath|_winapi_pathstriptoroot|_winapi_pathtoregion|_winapi_pathundecorate|_winapi_pathunexpandenvstrings|_winapi_pathunmakesystemfolder|_winapi_pathunquotespaces|_winapi_pathyetanothermakeuniquename|_winapi_pickicondlg|_winapi_playenhmetafile|_winapi_playsound|_winapi_plgblt|_winapi_pointfromrect|_winapi_polybezier|_winapi_polybezierto|_winapi_polydraw|_winapi_polygon|_winapi_postmessage|_winapi_primarylangid|_winapi_printdlg|_winapi_printdlgex|_winapi_printwindow|_winapi_progidfromclsid|_winapi_ptinrect|_winapi_ptinrectex|_winapi_ptinregion|_winapi_ptvisible|_winapi_querydosdevice|_winapi_queryinformationjobobject|_winapi_queryperformancecounter|_winapi_queryperformancefrequency|_winapi_radialgradientfill|_winapi_readdirectorychanges|_winapi_readfile|_winapi_readprocessmemory|_winapi_rectangle|_winapi_rectinregion|_winapi_rectisempty|_winapi_rectvisible|_winapi_redrawwindow|_winapi_regclosekey|_winapi_regconnectregistry|_winapi_regcopytree|_winapi_regcopytreeex|_winapi_regcreatekey|_winapi_regdeleteemptykey|_winapi_regdeletekey|_winapi_regdeletekeyvalue|_winapi_regdeletetree|_winapi_regdeletetreeex|_winapi_regdeletevalue|_winapi_regdisablereflectionkey|_winapi_regduplicatehkey|_winapi_regenablereflectionkey|_winapi_regenumkey|_winapi_regenumvalue|_winapi_regflushkey|_winapi_registerapplicationrestart|_winapi_registerclass|_winapi_registerclassex|_winapi_registerhotkey|_winapi_registerpowersettingnotification|_winapi_registerrawinputdevices|_winapi_registershellhookwindow|_winapi_registerwindowmessage|_winapi_regloadmuistring|_winapi_regnotifychangekeyvalue|_winapi_regopenkey|_winapi_regqueryinfokey|_winapi_regquerylastwritetime|_winapi_regquerymultiplevalues|_winapi_regqueryreflectionkey|_winapi_regqueryvalue|_winapi_regrestorekey|_winapi_regsavekey|_winapi_regsetvalue|_winapi_releasecapture|_winapi_releasedc|_winapi_releasemutex|_winapi_releasesemaphore|_winapi_releasestream|_winapi_removeclipboardformatlistener|_winapi_removedirectory|_winapi_removefontmemresourceex|_winapi_removefontresourceex|_winapi_removewindowsubclass|_winapi_reopenfile|_winapi_replacefile|_winapi_replacetextdlg|_winapi_resetevent|_winapi_restartdlg|_winapi_restoredc|_winapi_rgb|_winapi_rotatepoints|_winapi_roundrect|_winapi_savedc|_winapi_savefiledlg|_winapi_savehbitmaptofile|_winapi_savehicontofile|_winapi_scalewindowext|_winapi_screentoclient|_winapi_searchpath|_winapi_selectclippath|_winapi_selectcliprgn|_winapi_selectobject|_winapi_sendmessagetimeout|_winapi_setactivewindow|_winapi_setarcdirection|_winapi_setbitmapbits|_winapi_setbitmapdimensionex|_winapi_setbkcolor|_winapi_setbkmode|_winapi_setboundsrect|_winapi_setbrushorg|_winapi_setcapture|_winapi_setcaretblinktime|_winapi_setcaretpos|_winapi_setclasslongex|_winapi_setcoloradjustment|_winapi_setcompression|_winapi_setcurrentdirectory|_winapi_setcurrentprocessexplicitappusermodelid|_winapi_setcursor|_winapi_setdcbrushcolor|_winapi_setdcpencolor|_winapi_setdefaultprinter|_winapi_setdevicegammaramp|_winapi_setdibcolortable|_winapi_setdibits|_winapi_setdibitstodevice|_winapi_setdlldirectory|_winapi_setendoffile|_winapi_setenhmetafilebits|_winapi_seterrormode|_winapi_setevent|_winapi_setfileattributes|_winapi_setfileinformationbyhandleex|_winapi_setfilepointer|_winapi_setfilepointerex|_winapi_setfileshortname|_winapi_setfilevaliddata|_winapi_setfocus|_winapi_setfont|_winapi_setforegroundwindow|_winapi_setfrbuffer|_winapi_setgraphicsmode|_winapi_sethandleinformation|_winapi_setinformationjobobject|_winapi_setkeyboardlayout|_winapi_setkeyboardstate|_winapi_setlasterror|_winapi_setlayeredwindowattributes|_winapi_setlocaleinfo|_winapi_setmapmode|_winapi_setmessageextrainfo|_winapi_setparent|_winapi_setpixel|_winapi_setpolyfillmode|_winapi_setpriorityclass|_winapi_setprocessaffinitymask|_winapi_setprocessshutdownparameters|_winapi_setprocesswindowstation|_winapi_setrectrgn|_winapi_setrop2|_winapi_setsearchpathmode|_winapi_setstretchbltmode|_winapi_setsyscolors|_winapi_setsystemcursor|_winapi_settextalign|_winapi_settextcharacterextra|_winapi_settextcolor|_winapi_settextjustification|_winapi_setthemeappproperties|_winapi_setthreaddesktop|_winapi_setthreaderrormode|_winapi_setthreadexecutionstate|_winapi_setthreadlocale|_winapi_setthreaduilanguage|_winapi_settimer|_winapi_setudfcolormode|_winapi_setusergeoid|_winapi_setuserobjectinformation|_winapi_setvolumemountpoint|_winapi_setwindowdisplayaffinity|_winapi_setwindowext|_winapi_setwindowlong|_winapi_setwindoworg|_winapi_setwindowplacement|_winapi_setwindowpos|_winapi_setwindowrgn|_winapi_setwindowshookex|_winapi_setwindowsubclass|_winapi_setwindowtext|_winapi_setwindowtheme|_winapi_setwineventhook|_winapi_setworldtransform|_winapi_sfcisfileprotected|_winapi_sfciskeyprotected|_winapi_shellaboutdlg|_winapi_shelladdtorecentdocs|_winapi_shellchangenotify|_winapi_shellchangenotifyderegister|_winapi_shellchangenotifyregister|_winapi_shellcreatedirectory|_winapi_shellemptyrecyclebin|_winapi_shellexecute|_winapi_shellexecuteex|_winapi_shellextractassociatedicon|_winapi_shellextracticon|_winapi_shellfileoperation|_winapi_shellflushsfcache|_winapi_shellgetfileinfo|_winapi_shellgeticonoverlayindex|_winapi_shellgetimagelist|_winapi_shellgetknownfolderidlist|_winapi_shellgetknownfolderpath|_winapi_shellgetlocalizedname|_winapi_shellgetpathfromidlist|_winapi_shellgetsetfoldercustomsettings|_winapi_shellgetsettings|_winapi_shellgetspecialfolderlocation|_winapi_shellgetspecialfolderpath|_winapi_shellgetstockiconinfo|_winapi_shellilcreatefrompath|_winapi_shellnotifyicon|_winapi_shellnotifyicongetrect|_winapi_shellobjectproperties|_winapi_shellopenfolderandselectitems|_winapi_shellopenwithdlg|_winapi_shellqueryrecyclebin|_winapi_shellqueryusernotificationstate|_winapi_shellremovelocalizedname|_winapi_shellrestricted|_winapi_shellsetknownfolderpath|_winapi_shellsetlocalizedname|_winapi_shellsetsettings|_winapi_shellstartnetconnectiondlg|_winapi_shellupdateimage|_winapi_shelluserauthenticationdlg|_winapi_shelluserauthenticationdlgex|_winapi_shorttoword|_winapi_showcaret|_winapi_showcursor|_winapi_showerror|_winapi_showlasterror|_winapi_showmsg|_winapi_showownedpopups|_winapi_showwindow|_winapi_shutdownblockreasoncreate|_winapi_shutdownblockreasondestroy|_winapi_shutdownblockreasonquery|_winapi_sizeofresource|_winapi_stretchblt|_winapi_stretchdibits|_winapi_strformatbytesize|_winapi_strformatbytesizeex|_winapi_strformatkbsize|_winapi_strfromtimeinterval|_winapi_stringfromguid|_winapi_stringlena|_winapi_stringlenw|_winapi_strlen|_winapi_strokeandfillpath|_winapi_strokepath|_winapi_structtoarray|_winapi_sublangid|_winapi_subtractrect|_winapi_swapdword|_winapi_swapqword|_winapi_swapword|_winapi_switchcolor|_winapi_switchdesktop|_winapi_switchtothiswindow|_winapi_systemparametersinfo|_winapi_tabbedtextout|_winapi_terminatejobobject|_winapi_terminateprocess|_winapi_textout|_winapi_tilewindows|_winapi_trackmouseevent|_winapi_transparentblt|_winapi_twipsperpixelx|_winapi_twipsperpixely|_winapi_unhookwindowshookex|_winapi_unhookwinevent|_winapi_unionrect|_winapi_unionstruct|_winapi_uniquehardwareid|_winapi_unloadkeyboardlayout|_winapi_unlockfile|_winapi_unmapviewoffile|_winapi_unregisterapplicationrestart|_winapi_unregisterclass|_winapi_unregisterhotkey|_winapi_unregisterpowersettingnotification|_winapi_updatelayeredwindow|_winapi_updatelayeredwindowex|_winapi_updatelayeredwindowindirect|_winapi_updateresource|_winapi_updatewindow|_winapi_urlapplyscheme|_winapi_urlcanonicalize|_winapi_urlcombine|_winapi_urlcompare|_winapi_urlcreatefrompath|_winapi_urlfixup|_winapi_urlgetpart|_winapi_urlhash|_winapi_urlis|_winapi_userhandlegrantaccess|_winapi_validaterect|_winapi_validatergn|_winapi_verqueryroot|_winapi_verqueryvalue|_winapi_verqueryvalueex|_winapi_waitforinputidle|_winapi_waitformultipleobjects|_winapi_waitforsingleobject|_winapi_widechartomultibyte|_winapi_widenpath|_winapi_windowfromdc|_winapi_windowfrompoint|_winapi_wordtoshort|_winapi_wow64enablewow64fsredirection|_winapi_writeconsole|_winapi_writefile|_winapi_writeprocessmemory|_winapi_zeromemory|_winnet_addconnection|_winnet_addconnection2|_winnet_addconnection3|_winnet_cancelconnection|_winnet_cancelconnection2|_winnet_closeenum|_winnet_connectiondialog|_winnet_connectiondialog1|_winnet_disconnectdialog|_winnet_disconnectdialog1|_winnet_enumresource|_winnet_getconnection|_winnet_getconnectionperformance|_winnet_getlasterror|_winnet_getnetworkinformation|_winnet_getprovidername|_winnet_getresourceinformation|_winnet_getresourceparent|_winnet_getuniversalname|_winnet_getuser|_winnet_openenum|_winnet_restoreconnection|_winnet_useconnection|_word_create|_word_docadd|_word_docattach|_word_docclose|_word_docexport|_word_docfind|_word_docfindreplace|_word_docget|_word_doclinkadd|_word_doclinkget|_word_docopen|_word_docpictureadd|_word_docprint|_word_docrangeset|_word_docsave|_word_docsaveas|_word_doctableread|_word_doctablewrite|_word_quit)\b 15 | scope: support.function.other.autoit 16 | - match: '@\b(?i:appdatacommondir|appdatadir|autoitexe|autoitpid|autoitversion|autoitx64|com_eventobj|commonfilesdir|compiled|computername|comspec|cpuarch|cr|crlf|desktopcommondir|desktopdepth|desktopdir|desktopheight|desktoprefresh|desktopwidth|documentscommondir|error|exitcode|exitmethod|extended|favoritescommondir|favoritesdir|gui_ctrlhandle|gui_ctrlid|gui_dragfile|gui_dragid|gui_dropid|gui_winhandle|homedrive|homepath|homeshare|hotkeypressed|hour|ipaddress1|ipaddress2|ipaddress3|ipaddress4|kblayout|lf|localappdatadir|logondnsdomain|logondomain|logonserver|mday|min|mon|msec|muilang|mydocumentsdir|numparams|osarch|osbuild|oslang|osservicepack|ostype|osversion|programfilesdir|programscommondir|programsdir|scriptdir|scriptfullpath|scriptlinenumber|scriptname|sec|startmenucommondir|startmenudir|startupcommondir|startupdir|sw_disable|sw_enable|sw_hide|sw_lock|sw_maximize|sw_minimize|sw_restore|sw_show|sw_showdefault|sw_showmaximized|sw_showminimized|sw_showminnoactive|sw_showna|sw_shownoactivate|sw_shownormal|sw_unlock|systemdir|tab|tempdir|tray_id|trayiconflashing|trayiconvisible|username|userprofiledir|wday|windowsdir|workingdir|yday|year)\b' 17 | scope: support.type.macro.autoit 18 | - match: '#(?i:include)\s+((["''<]).*(["''>]))$' 19 | scope: keyword.control.import.autoit 20 | captures: 21 | 1: string.parameter.import.autoit 22 | 2: punctuation.definition.string.begin.import.autoit 23 | 3: punctuation.definition.string.end.import.autoit 24 | - match: '#\b(?i:include-once|notrayicon|onautoitstartregister|requireadmin|endregion|forcedef|forceref|ignorefunc|pragma|region)\b(.*)$' 25 | scope: keyword.control.directives.autoit 26 | captures: 27 | 1: string.parameter.directives.autoit 28 | - match: (?i:#cs) 29 | push: 30 | - meta_scope: comment.block.cs.autoit 31 | - match: (?i:#ce).*$ 32 | pop: true 33 | - match: (?i:#comments-start) 34 | push: 35 | - meta_scope: comment.block.comments-start.autoit 36 | - match: (?i:#comments-end).*$ 37 | pop: true 38 | - match: (;).* 39 | scope: comment.line.semicolon.autoit 40 | captures: 41 | 1: punctuation.definition.comment.autoit 42 | - match: (") 43 | captures: 44 | 1: punctuation.definition.string.begin.autoit 45 | push: 46 | - meta_scope: string.quoted.double.autoit 47 | - match: (")(?!")|^ 48 | captures: 49 | 1: punctuation.definition.string.end.autoit 50 | pop: true 51 | - match: '""' 52 | scope: constant.character.escape.autoit 53 | - include: send-keys 54 | - include: restrict-newlines 55 | - match: (') 56 | captures: 57 | 1: punctuation.definition.string.begin.autoit 58 | push: 59 | - meta_scope: string.quoted.single.autoit 60 | - match: (')(?!')|^ 61 | captures: 62 | 1: punctuation.definition.string.end.autoit 63 | pop: true 64 | - match: "''" 65 | scope: constant.character.escape.autoit 66 | - include: send-keys 67 | - include: restrict-newlines 68 | - match: '(\$)[a-zA-Z_][a-zA-Z0-9_]*' 69 | scope: variable.other.autoit 70 | - match: |- 71 | (?x) \b 72 | ((0(x|X)[0-9a-fA-F]*) 73 | |( 74 | ([0-9]+\.?[0-9]*) 75 | |(\.[0-9]+) 76 | )((e|E)(\+|-)?[0-9]+)? 77 | )\b 78 | scope: constant.numeric.autoit 79 | - match: "[-+*/&]?=" 80 | scope: keyword.operator.assignment.autoit 81 | - match: \+|-|\*|\^|/|& 82 | scope: keyword.operator.arithmetic.autoit 83 | - match: "<|>|<>|[<>=]=" 84 | scope: keyword.operator.comparison.autoit 85 | - match: \b(?i:not|and|or)\b 86 | scope: keyword.operator.logical.autoit 87 | - match: '[\[\]()]' 88 | scope: punctuation.bracket.autoit 89 | - match: \b_(?= *(?:$|;)) 90 | scope: keyword.control.underscore.autoit 91 | restrict-newlines: 92 | - match: \n.*$ 93 | scope: invalid.illegal.string.eol.autoit 94 | send-keys: 95 | - match: '{\b(?i:appskey|backspace|browser_back|browser_favorites|browser_forward|browser_home|browser_refresh|browser_search|browser_stop|bs|capslock|del|delete|down|end|enter|esc|escape|f1|f10|f11|f12|f2|f3|f4|f5|f6|f7|f8|f9|home|ins|insert|launch_app1|launch_app2|launch_mail|launch_media|left|media_next|media_play_pause|media_prev|media_stop|numlock|numpad0|numpad1|numpad2|numpad3|numpad4|numpad5|numpad6|numpad7|numpad8|numpad9|numpadadd|numpaddiv|numpaddot|numpadenter|numpadmult|numpadsub|pause|pgdn|pgup|printscreen|right|scrolllock|sleep|space|tab|up|volume_down|volume_mute|volume_up)\b}' 96 | scope: constant.other.send-key.autoit 97 | -------------------------------------------------------------------------------- /Commands/Default.sublime-commands: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "AutoIt - Tidy", 4 | "command": "autoittidy" 5 | }, 6 | { 7 | "caption": "AutoIt - IncludeHelper", 8 | "command": "autoitincludehelper" 9 | }, 10 | { 11 | "caption": "AutoIt - Info", 12 | "command": "autoitinfo" 13 | }, 14 | { 15 | "caption": "AutoIt - Help", 16 | "command": "autoithelp" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /Comments.tmPreferences: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | name 6 | Comments 7 | scope 8 | source.autoit 9 | settings 10 | 11 | shellVariables 12 | 13 | 14 | name 15 | TM_COMMENT_START 16 | value 17 | ; 18 | 19 | 20 | name 21 | TM_COMMENT_START_2 22 | value 23 | #comments-start 24 | 25 | 26 | name 27 | TM_COMMENT_END_2 28 | value 29 | #comments-end 30 | 31 | 32 | name 33 | TM_COMMENT_MODE_2 34 | value 35 | block 36 | 37 | 38 | 39 | uuid 40 | 847C5427-C83D-408F-9FC3-A545C9252517 41 | 42 | 43 | -------------------------------------------------------------------------------- /Completions/CompilerDirectives.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "#Compiler_AU3Check_Dat = ", "contents": "#Compiler_AU3Check_Dat = " }, 5 | { "trigger": "#Compiler_Allow_Decompile = y", "contents": "#Compiler_Allow_Decompile = y" }, 6 | { "trigger": "#Compiler_Aut2Exe = ", "contents": "#Compiler_Aut2Exe = " }, 7 | { "trigger": "#Compiler_AutoIt3 = ", "contents": "#Compiler_AutoIt3 = " }, 8 | { "trigger": "#Compiler_Compression = 2", "contents": "#Compiler_Compression = 2" }, 9 | { "trigger": "#Compiler_Icon = ", "contents": "#Compiler_Icon = " }, 10 | { "trigger": "#Compiler_OutFile =", "contents": "#Compiler_OutFile =" }, 11 | { "trigger": "#Compiler_PassPhrase = ", "contents": "#Compiler_PassPhrase = " }, 12 | { "trigger": "#Compiler_Prompt = y", "contents": "#Compiler_Prompt = y" }, 13 | { "trigger": "#Compiler_Res_Comment = ", "contents": "#Compiler_Res_Comment = " }, 14 | { "trigger": "#Compiler_Res_Description = ", "contents": "#Compiler_Res_Description = " }, 15 | { "trigger": "#Compiler_Res_Field = AutoIt Version", "contents": "#Compiler_Res_Field = AutoIt Version" }, 16 | { "trigger": "#Compiler_Res_Field = Platform", "contents": "#Compiler_Res_Field = Platform" }, 17 | { "trigger": "#Compiler_Res_Fileversion = 0.0.0.0", "contents": "#Compiler_Res_Fileversion = 0.0.0.0" }, 18 | { "trigger": "#Compiler_Res_LegalCopyright = ", "contents": "#Compiler_Res_LegalCopyright = " }, 19 | { "trigger": "#Compiler_Run_AU3Check = y", "contents": "#Compiler_Run_AU3Check = y" }, 20 | { "trigger": "#Compiler_Run_After = ", "contents": "#Compiler_Run_After = " }, 21 | { "trigger": "#Compiler_Run_Before = ", "contents": "#Compiler_Run_Before = " }, 22 | { "trigger": "#NoTrayIcon", "contents": "#NoTrayIcon" }, 23 | { "trigger": ";~ Opt('CaretCoordMode', 0)", "contents": ";~ Opt('CaretCoordMode', 0) ; 1 = Absolute screen coordinates, 0 = Relative coords to the active window." }, 24 | { "trigger": ";~ Opt('ColorMode', 1)", "contents": ";~ Opt('ColorMode', 1) ; 0 = Colors are defined as RGB (0xRRGGBB), 1 = Colors are defined as BGR (0xBBGGRR)." }, 25 | { "trigger": ";~ Opt('ExpandEnvStrings', 1)", "contents": ";~ Opt('ExpandEnvStrings', 1) ; 0 = Don't expand, 1 = Do expand (Use %dos% variables in strings)." }, 26 | { "trigger": ";~ Opt('ExpandVarStrings', 1)", "contents": ";~ Opt('ExpandVarStrings', 1) ; 0 = Don't expand, 1 = Do expand (Use $autoit$ variables in strings)." }, 27 | { "trigger": ";~ Opt('FtpBinaryMode', 0)", "contents": ";~ Opt('FtpBinaryMode', 0) ; 1 = Binary transfer, 0 = ASCII transfer." }, 28 | { "trigger": ";~ Opt('GUICoordMode', 0)", "contents": ";~ Opt('GUICoordMode', 0) ; 0 = Relative position to the start of the last control (Upper left corner)." }, 29 | { "trigger": ";~ Opt('GUICoordMode', 1)", "contents": ";~ Opt('GUICoordMode', 1) ; 1 = Absolute coordinates still relative to the dialog box." }, 30 | { "trigger": ";~ Opt('GUICoordMode', 2)", "contents": ";~ Opt('GUICoordMode', 2) ; 2 = Cell positionining relative to current cell." }, 31 | { "trigger": ";~ Opt('GUIOnEventMode', 1)", "contents": ";~ Opt('GUIOnEventMode', 1) ; 0 = Disable, 1 = Enable." }, 32 | { "trigger": ";~ Opt('GUIResizeMode', 1)", "contents": ";~ Opt('GUIResizeMode', 1) ; 0 = No resizing, <1024 = Anytype of resizing (Reference: GuiCtrlSetResizing)." }, 33 | { "trigger": ";~ Opt('MouseClickDelay', 10)", "contents": ";~ Opt('MouseClickDelay', 10) ; ? = 10 milliseconds." }, 34 | { "trigger": ";~ Opt('MouseClickDownDelay', 10)", "contents": ";~ Opt('MouseClickDownDelay', 10) ; ? = 10 milliseconds." }, 35 | { "trigger": ";~ Opt('MouseClickDragDelay', 250)", "contents": ";~ Opt('MouseClickDragDelay', 250) ; ? = 250 milliseconds." }, 36 | { "trigger": ";~ Opt('MouseCoordMode', 0)", "contents": ";~ Opt('MouseCoordMode', 0) ; 1 = Absolute, 0 = Relative to active window, 2 = Relative to client area." }, 37 | { "trigger": ";~ Opt('MustDeclareVars', 1)", "contents": ";~ Opt('MustDeclareVars', 1) ; 0 = No, 1 = Require pre-declare." }, 38 | { "trigger": ";~ Opt('OnExitFunc', '')", "contents": ";~ Opt('OnExitFunc', '') ; '' Sets the name of the function called when AutoIt exits (Default is OnAutoItExit)." }, 39 | { "trigger": ";~ Opt('PixelCoordMode', 0)", "contents": ";~ Opt('PixelCoordMode', 0) ; 1 = Absolute, 0 = relative, 2 = Relative coords to the client area." }, 40 | { "trigger": ";~ Opt('RunErrorsFatal', 0)", "contents": ";~ Opt('RunErrorsFatal', 0) ; 1 = Fatal, 0 = Silent set @error." }, 41 | { "trigger": ";~ Opt('SendAttachMode', 1)", "contents": ";~ Opt('SendAttachMode', 1) ; 0 = Don't attach, 1 = Attach." }, 42 | { "trigger": ";~ Opt('SendCapslockMode', 0)", "contents": ";~ Opt('SendCapslockMode', 0) ; 1 = Store and restore, 0 = Don't store/restore." }, 43 | { "trigger": ";~ Opt('SendKeyDelay', 5)", "contents": ";~ Opt('SendKeyDelay', 5) ; ? = 5 milliseconds." }, 44 | { "trigger": ";~ Opt('SendKeyDownDelay', 1)", "contents": ";~ Opt('SendKeyDownDelay', 1) ; ? = 1 millisecond." }, 45 | { "trigger": ";~ Opt('TrayIconDebug', 1)", "contents": ";~ Opt('TrayIconDebug', 1) ; 0 = No info, 1 = Debug line info." }, 46 | { "trigger": ";~ Opt('TrayIconHide', 1)", "contents": ";~ Opt('TrayIconHide', 1) ; 0 = Show, 1 = Hide." }, 47 | { "trigger": ";~ Opt('WinDetectHiddenText', 1)", "contents": ";~ Opt('WinDetectHiddenText', 1) ; 0 = Don't detect, 1=Do detect." }, 48 | { "trigger": ";~ Opt('WinSearchChildren', 1)", "contents": ";~ Opt('WinSearchChildren', 1) ; 0 = No, 1 = Search children also." }, 49 | { "trigger": ";~ Opt('WinTextMatchMode', 4)", "contents": ";~ Opt('WinTextMatchMode', 4) ; 1 = Complete / Slow mode, 2 = Quick mode." }, 50 | { "trigger": ";~ Opt('WinTitleMatchMode', 4)", "contents": ";~ Opt('WinTitleMatchMode', 4) ; 1 = Start, 2 = SubString, 3 = Exact, 4 = ..." }, 51 | { "trigger": ";~ Opt('WinWaitDelay', 250)", "contents": ";~ Opt('WinWaitDelay', 250) ; ? = 250 milliseconds." } 52 | ] 53 | } 54 | -------------------------------------------------------------------------------- /Completions/Functions.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [{ 4 | "trigger": "Abs()", 5 | "contents": "Abs(${1:expression})" 6 | }, { 7 | "trigger": "ACos()", 8 | "contents": "ACos(${1:expression})" 9 | }, { 10 | "trigger": "AdlibRegister()", 11 | "contents": "AdlibRegister(${1:function}${2:, ${3:[time]}})" 12 | }, { 13 | "trigger": "AdlibUnRegister()", 14 | "contents": "AdlibUnRegister(${1:\"${2:[function]}\"})" 15 | }, { 16 | "trigger": "Asc()", 17 | "contents": "Asc(${1:char})" 18 | }, { 19 | "trigger": "AscW()", 20 | "contents": "AscW(${1:char})" 21 | }, { 22 | "trigger": "ASin()", 23 | "contents": "ASin(${1:expression})" 24 | }, { 25 | "trigger": "Assign()", 26 | "contents": "Assign(${1:varname}, ${2:data}${3:, ${4:[flag]}})" 27 | }, { 28 | "trigger": "ATan()", 29 | "contents": "ATan(${1:expression})" 30 | }, { 31 | "trigger": "AutoItSetOption()", 32 | "contents": "AutoItSetOption(${1:option}${2:, ${3:[param]}})" 33 | }, { 34 | "trigger": "AutoItWinGetTitle()", 35 | "contents": "AutoItWinGetTitle()" 36 | }, { 37 | "trigger": "AutoItWinSetTitle()", 38 | "contents": "AutoItWinSetTitle(${1:newtitle})" 39 | }, { 40 | "trigger": "Beep()", 41 | "contents": "Beep(${1:${2:[Frequency]}${3:, ${4:[Duration]}}})" 42 | }, { 43 | "trigger": "Binary()", 44 | "contents": "Binary(${1:expression})" 45 | }, { 46 | "trigger": "BinaryLen()", 47 | "contents": "BinaryLen(${1:binary})" 48 | }, { 49 | "trigger": "BinaryMid()", 50 | "contents": "BinaryMid(${1:binary}, ${2:start}${3:, ${4:[count]}})" 51 | }, { 52 | "trigger": "BinaryToString()", 53 | "contents": "BinaryToString(${1:expression}${2:, ${3:[flag]}})" 54 | }, { 55 | "trigger": "BitAND()", 56 | "contents": "BitAND(${1:value1}, ${2:value2}${3:, ${4:[value n]}})" 57 | }, { 58 | "trigger": "BitNOT()", 59 | "contents": "BitNOT(${1:value})" 60 | }, { 61 | "trigger": "BitOR()", 62 | "contents": "BitOR(${1:value1}, ${2:value2}${3:, ${4:[value n]}})" 63 | }, { 64 | "trigger": "BitRotate()", 65 | "contents": "BitRotate(${1:value}${2:, ${3:[shift]}${4:, ${5:[size]}}})" 66 | }, { 67 | "trigger": "BitShift()", 68 | "contents": "BitShift(${1:value}, ${2:shift})" 69 | }, { 70 | "trigger": "BitXOR()", 71 | "contents": "BitXOR(${1:value1}, ${2:value2}${3:, ${4:[value n]}})" 72 | }, { 73 | "trigger": "BlockInput()", 74 | "contents": "BlockInput(${1:flag})" 75 | }, { 76 | "trigger": "Break()", 77 | "contents": "Break(${1:mode})" 78 | }, { 79 | "trigger": "Call()", 80 | "contents": "Call(${1:function}${2:, ${3:[param1]}${4:, ${5:[param2]}${6:, ${7:[paramN<\/i>]}}}})" 81 | }, { 82 | "trigger": "CDTray()", 83 | "contents": "CDTray(${1:drive}, ${2:status})" 84 | }, { 85 | "trigger": "Ceiling()", 86 | "contents": "Ceiling(${1:expression})" 87 | }, { 88 | "trigger": "Chr()", 89 | "contents": "Chr(${1:ASCIIcode})" 90 | }, { 91 | "trigger": "ChrW()", 92 | "contents": "ChrW(${1:UNICODEcode})" 93 | }, { 94 | "trigger": "ClipGet()", 95 | "contents": "ClipGet()" 96 | }, { 97 | "trigger": "ClipPut()", 98 | "contents": "ClipPut(${1:value})" 99 | }, { 100 | "trigger": "ConsoleRead()", 101 | "contents": "ConsoleRead(${1:${2:[peek = false]}${3:, ${4:[binary = false]}}})" 102 | }, { 103 | "trigger": "ConsoleWrite()", 104 | "contents": "ConsoleWrite(${1:data})" 105 | }, { 106 | "trigger": "ConsoleWriteError()", 107 | "contents": "ConsoleWriteError(${1:data})" 108 | }, { 109 | "trigger": "ControlClick()", 110 | "contents": "ControlClick(${1:title}, ${2:text}, ${3:controlID}${4:, ${5:[button]}${6:, ${7:[clicks]}${8:, ${9:[x]}${10:, ${11:[y]}}}}})" 111 | }, { 112 | "trigger": "ControlCommand()", 113 | "contents": "ControlCommand(${1:title}, ${2:text}, ${3:controlID}, ${4:command}${5:, \"${6:[option]}\"})" 114 | }, { 115 | "trigger": "ControlDisable()", 116 | "contents": "ControlDisable(${1:title}, ${2:text}, ${3:controlID})" 117 | }, { 118 | "trigger": "ControlEnable()", 119 | "contents": "ControlEnable(${1:title}, ${2:text}, ${3:controlID})" 120 | }, { 121 | "trigger": "ControlFocus()", 122 | "contents": "ControlFocus(${1:title}, ${2:text}, ${3:controlID})" 123 | }, { 124 | "trigger": "ControlGetFocus()", 125 | "contents": "ControlGetFocus(${1:title}${2:, \"${3:[text]}\"})" 126 | }, { 127 | "trigger": "ControlGetHandle()", 128 | "contents": "ControlGetHandle(${1:title}, ${2:text}, ${3:controlID})" 129 | }, { 130 | "trigger": "ControlGetPos()", 131 | "contents": "ControlGetPos(${1:title}, ${2:text}, ${3:controlID})" 132 | }, { 133 | "trigger": "ControlGetText()", 134 | "contents": "ControlGetText(${1:title}, ${2:text}, ${3:controlID})" 135 | }, { 136 | "trigger": "ControlHide()", 137 | "contents": "ControlHide(${1:title}, ${2:text}, ${3:controlID})" 138 | }, { 139 | "trigger": "ControlListView()", 140 | "contents": "ControlListView(${1:title}, ${2:text}, ${3:controlID}, ${4:command}${5:, ${6:[option1]}${7:, ${8:[option2]}}})" 141 | }, { 142 | "trigger": "ControlMove()", 143 | "contents": "ControlMove(${1:title}, ${2:text}, ${3:controlID}, ${4:x}, ${5:y}${6:, ${7:[width]}${8:, ${9:[height]}}})" 144 | }, { 145 | "trigger": "ControlSend()", 146 | "contents": "ControlSend(${1:title}, ${2:text}, ${3:controlID}, ${4:string}${5:, ${6:[flag]}})" 147 | }, { 148 | "trigger": "ControlSetText()", 149 | "contents": "ControlSetText(${1:title}, ${2:text}, ${3:controlID}, ${4:new text}${5:, ${6:[flag]}})" 150 | }, { 151 | "trigger": "ControlShow()", 152 | "contents": "ControlShow(${1:title}, ${2:text}, ${3:controlID})" 153 | }, { 154 | "trigger": "ControlTreeView()", 155 | "contents": "ControlTreeView(${1:title}, ${2:text}, ${3:controlID}, ${4:command}${5:, ${6:[option1]}${7:, ${8:[option2]}}})" 156 | }, { 157 | "trigger": "Cos()", 158 | "contents": "Cos(${1:expression})" 159 | }, { 160 | "trigger": "Dec()", 161 | "contents": "Dec(${1:hex}${2:, ${3:[flag]}})" 162 | }, { 163 | "trigger": "DirCopy()", 164 | "contents": "DirCopy(${1:source dir}, ${2:dest dir}${3:, ${4:[flag]}})" 165 | }, { 166 | "trigger": "DirCreate()", 167 | "contents": "DirCreate(${1:path})" 168 | }, { 169 | "trigger": "DirGetSize()", 170 | "contents": "DirGetSize(${1:path}${2:, ${3:[flag]}})" 171 | }, { 172 | "trigger": "DirMove()", 173 | "contents": "DirMove(${1:source dir}, ${2:dest dir}${3:, ${4:[flag]}})" 174 | }, { 175 | "trigger": "DirRemove()", 176 | "contents": "DirRemove(${1:path}${2:, ${3:[recurse]}})" 177 | }, { 178 | "trigger": "DllCall()", 179 | "contents": "DllCall(${1:dll}, ${2:return type}, ${3:function}, ${4:param1}, ${5:param n}${6:, ${7:[type1]}${8:, ${9:[type n]}}})" 180 | }, { 181 | "trigger": "DllCallAddress()", 182 | "contents": "DllCallAddress(${1:return type}, ${2:address}, ${3:param1}, ${4:param n}${5:, ${6:[type1]}${7:, ${8:[type n]}}})" 183 | }, { 184 | "trigger": "DllCallbackFree()", 185 | "contents": "DllCallbackFree(${1:handle})" 186 | }, { 187 | "trigger": "DllCallbackGetPtr()", 188 | "contents": "DllCallbackGetPtr(${1:handle})" 189 | }, { 190 | "trigger": "DllCallbackRegister()", 191 | "contents": "DllCallbackRegister(${1:function}, ${2:return type}, ${3:params})" 192 | }, { 193 | "trigger": "DllClose()", 194 | "contents": "DllClose(${1:dllhandle})" 195 | }, { 196 | "trigger": "DllOpen()", 197 | "contents": "DllOpen(${1:filename})" 198 | }, { 199 | "trigger": "DllStructCreate()", 200 | "contents": "DllStructCreate(${1:Struct}, ${2:Pointer})" 201 | }, { 202 | "trigger": "DllStructGetData()", 203 | "contents": "DllStructGetData(${1:Struct}, ${2:Element}${3:, ${4:[index]}})" 204 | }, { 205 | "trigger": "DllStructGetPtr()", 206 | "contents": "DllStructGetPtr(${1:Struct}, ${2:Element})" 207 | }, { 208 | "trigger": "DllStructGetSize()", 209 | "contents": "DllStructGetSize(${1:Struct})" 210 | }, { 211 | "trigger": "DllStructSetData()", 212 | "contents": "DllStructSetData(${1:Struct}, ${2:Element}, ${3:value}${4:, ${5:[index]}})" 213 | }, { 214 | "trigger": "DriveGetDrive()", 215 | "contents": "DriveGetDrive(${1:type})" 216 | }, { 217 | "trigger": "DriveGetFileSystem()", 218 | "contents": "DriveGetFileSystem(${1:path})" 219 | }, { 220 | "trigger": "DriveGetLabel()", 221 | "contents": "DriveGetLabel(${1:path})" 222 | }, { 223 | "trigger": "DriveGetSerial()", 224 | "contents": "DriveGetSerial(${1:path})" 225 | }, { 226 | "trigger": "DriveGetType()", 227 | "contents": "DriveGetType(${1:path})" 228 | }, { 229 | "trigger": "DriveMapAdd()", 230 | "contents": "DriveMapAdd(${1:device}, ${2:remote share}${3:, ${4:[flags]}${5:, \"${6:[user]}\"${7:, \"${8:[password]}\"}}})" 231 | }, { 232 | "trigger": "DriveMapDel()", 233 | "contents": "DriveMapDel(${1:drive})" 234 | }, { 235 | "trigger": "DriveMapGet()", 236 | "contents": "DriveMapGet(${1:device})" 237 | }, { 238 | "trigger": "DriveSetLabel()", 239 | "contents": "DriveSetLabel(${1:path}, ${2:label})" 240 | }, { 241 | "trigger": "DriveSpaceFree()", 242 | "contents": "DriveSpaceFree(${1:path})" 243 | }, { 244 | "trigger": "DriveSpaceTotal()", 245 | "contents": "DriveSpaceTotal(${1:path})" 246 | }, { 247 | "trigger": "DriveStatus()", 248 | "contents": "DriveStatus(${1:path})" 249 | }, { 250 | "trigger": "EnvGet()", 251 | "contents": "EnvGet(${1:envvariable})" 252 | }, { 253 | "trigger": "EnvSet()", 254 | "contents": "EnvSet(${1:envvariable}${2:, \"${3:[value]}\"})" 255 | }, { 256 | "trigger": "EnvUpdate()", 257 | "contents": "EnvUpdate()" 258 | }, { 259 | "trigger": "Eval()", 260 | "contents": "Eval(${1:string})" 261 | }, { 262 | "trigger": "Execute()", 263 | "contents": "Execute(${1:string})" 264 | }, { 265 | "trigger": "Exp()", 266 | "contents": "Exp(${1:expression})" 267 | }, { 268 | "trigger": "FileChangeDir()", 269 | "contents": "FileChangeDir(${1:path})" 270 | }, { 271 | "trigger": "FileClose()", 272 | "contents": "FileClose(${1:filehandle})" 273 | }, { 274 | "trigger": "FileCopy()", 275 | "contents": "FileCopy(${1:source}, ${2:dest}${3:, ${4:[flag]}})" 276 | }, { 277 | "trigger": "FileCreateNTFSLink()", 278 | "contents": "FileCreateNTFSLink(${1:source}, ${2:hardlink}${3:, ${4:[flag]}})" 279 | }, { 280 | "trigger": "FileCreateShortcut()", 281 | "contents": "FileCreateShortcut(${1:file}, ${2:lnk}${3:, \"${4:[workdir]}\"${5:, \"${6:[args]}\"${7:, \"${8:[desc]}\"${9:, \"${10:[icon]}\"${11:, \"${12:[hotkey]}\"${13:, ${14:[icon number]}${15:, ${16:[state]}}}}}}}})" 282 | }, { 283 | "trigger": "FileDelete()", 284 | "contents": "FileDelete(${1:path})" 285 | }, { 286 | "trigger": "FileExists()", 287 | "contents": "FileExists(${1:path})" 288 | }, { 289 | "trigger": "FileFindFirstFile()", 290 | "contents": "FileFindFirstFile(${1:filename})" 291 | }, { 292 | "trigger": "FileFindNextFile()", 293 | "contents": "FileFindNextFile(${1:search})" 294 | }, { 295 | "trigger": "FileFlush()", 296 | "contents": "FileFlush(${1:filehandle})" 297 | }, { 298 | "trigger": "FileGetAttrib()", 299 | "contents": "FileGetAttrib(${1:filename})" 300 | }, { 301 | "trigger": "FileGetEncoding()", 302 | "contents": "FileGetEncoding(${1:filehandle\/filename}${2:, ${3:[mode]}})" 303 | }, { 304 | "trigger": "FileGetLongName()", 305 | "contents": "FileGetLongName(${1:file}${2:, ${3:[flag]}})" 306 | }, { 307 | "trigger": "FileGetPos()", 308 | "contents": "FileGetPos(${1:filehandle})" 309 | }, { 310 | "trigger": "FileGetShortcut()", 311 | "contents": "FileGetShortcut(${1:lnk})" 312 | }, { 313 | "trigger": "FileGetShortName()", 314 | "contents": "FileGetShortName(${1:file}${2:, ${3:[flag]}})" 315 | }, { 316 | "trigger": "FileGetSize()", 317 | "contents": "FileGetSize(${1:filename})" 318 | }, { 319 | "trigger": "FileGetTime()", 320 | "contents": "FileGetTime(${1:filename}${2:, ${3:[option]}${4:, ${5:[format]}}})" 321 | }, { 322 | "trigger": "FileGetVersion()", 323 | "contents": "FileGetVersion(${1:filename}, ${2:stringname})" 324 | }, { 325 | "trigger": "FileInstall()", 326 | "contents": "FileInstall(${1:source}, ${2:dest}${3:, ${4:[flag]}})" 327 | }, { 328 | "trigger": "FileMove()", 329 | "contents": "FileMove(${1:source}, ${2:dest}${3:, ${4:[flag]}})" 330 | }, { 331 | "trigger": "FileOpen()", 332 | "contents": "FileOpen(${1:filename}${2:, ${3:[mode]}})" 333 | }, { 334 | "trigger": "FileOpenDialog()", 335 | "contents": "FileOpenDialog(${1:title}, ${2:init dir}, ${3:filter}${4:, ${5:[options]}${6:, \"${7:[default name]}\"${8:, ${9:[hwnd]}}}})" 336 | }, { 337 | "trigger": "FileRead()", 338 | "contents": "FileRead(${1:filehandle\/filename}${2:, ${3:[count]}})" 339 | }, { 340 | "trigger": "FileReadLine()", 341 | "contents": "FileReadLine(${1:filehandle\/filename}${2:, ${3:[line]}})" 342 | }, { 343 | "trigger": "FileRecycle()", 344 | "contents": "FileRecycle(${1:source})" 345 | }, { 346 | "trigger": "FileRecycleEmpty()", 347 | "contents": "FileRecycleEmpty(${1:\"${2:[source]}\"})" 348 | }, { 349 | "trigger": "FileSaveDialog()", 350 | "contents": "FileSaveDialog(${1:title}, ${2:init dir}, ${3:filter}${4:, ${5:[options]}${6:, \"${7:[default name]}\"${8:, ${9:[hwnd]}}}})" 351 | }, { 352 | "trigger": "FileSelectFolder()", 353 | "contents": "FileSelectFolder(${1:dialog text}, ${2:root dir}${3:, ${4:[flag]}${5:, \"${6:[initial dir]}\"${7:, ${8:[hwnd]}}}})" 354 | }, { 355 | "trigger": "FileSetAttrib()", 356 | "contents": "FileSetAttrib(${1:file pattern}, ${2:+-RASHNOT}${3:, ${4:[recurse]}})" 357 | }, { 358 | "trigger": "FileSetPos()", 359 | "contents": "FileSetPos(${1:filehandle}, ${2:offset}, ${3:origin})" 360 | }, { 361 | "trigger": "FileSetTime()", 362 | "contents": "FileSetTime(${1:file pattern}, ${2:time}${3:, ${4:[type]}${5:, ${6:[recurse]}}})" 363 | }, { 364 | "trigger": "FileWrite()", 365 | "contents": "FileWrite(${1:filehandle\/filename}, ${2:text\/data})" 366 | }, { 367 | "trigger": "FileWriteLine()", 368 | "contents": "FileWriteLine(${1:filehandle\/filename}, ${2:line})" 369 | }, { 370 | "trigger": "Floor()", 371 | "contents": "Floor(${1:expression})" 372 | }, { 373 | "trigger": "FtpSetProxy()", 374 | "contents": "FtpSetProxy(${1:mode}${2:, \"${3:[proxy:port]}\"${4:, \"${5:[username]}\"${6:, \"${7:[password]}\"}}})" 375 | }, { 376 | "trigger": "GUICreate()", 377 | "contents": "GUICreate(${1:title}${2:, ${3:[width]}${4:, ${5:[height]}${6:, ${7:[left]}${8:, ${9:[top]}${10:, ${11:[style]}${12:, ${13:[exStyle]}${14:, ${15:[parent]}}}}}}}})" 378 | }, { 379 | "trigger": "GUICtrlCreateAvi()", 380 | "contents": "GUICtrlCreateAvi(${1:filename}, ${2:subfileid}, ${3:left}, ${4:top}${5:, ${6:[width]}${7:, ${8:[height]}${9:, ${10:[style]}${11:, ${12:[exStyle]}}}}})" 381 | }, { 382 | "trigger": "GUICtrlCreateButton()", 383 | "contents": "GUICtrlCreateButton(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 384 | }, { 385 | "trigger": "GUICtrlCreateCheckbox()", 386 | "contents": "GUICtrlCreateCheckbox(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 387 | }, { 388 | "trigger": "GUICtrlCreateCombo()", 389 | "contents": "GUICtrlCreateCombo(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 390 | }, { 391 | "trigger": "GUICtrlCreateContextMenu()", 392 | "contents": "GUICtrlCreateContextMenu(${1:${2:[controlID]}})" 393 | }, { 394 | "trigger": "GUICtrlCreateDate()", 395 | "contents": "GUICtrlCreateDate(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 396 | }, { 397 | "trigger": "GUICtrlCreateDummy()", 398 | "contents": "GUICtrlCreateDummy()" 399 | }, { 400 | "trigger": "GUICtrlCreateEdit()", 401 | "contents": "GUICtrlCreateEdit(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 402 | }, { 403 | "trigger": "GUICtrlCreateGraphic()", 404 | "contents": "GUICtrlCreateGraphic(${1:left}, ${2:top}${3:, ${4:[width]}${5:, ${6:[height]}${7:, ${8:[style]}}}})" 405 | }, { 406 | "trigger": "GUICtrlCreateGroup()", 407 | "contents": "GUICtrlCreateGroup(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 408 | }, { 409 | "trigger": "GUICtrlCreateIcon()", 410 | "contents": "GUICtrlCreateIcon(${1:filename}, ${2:iconName}, ${3:left}, ${4:top}${5:, ${6:[width]}${7:, ${8:[height]}${9:, ${10:[style]}${11:, ${12:[exStyle]}}}}})" 411 | }, { 412 | "trigger": "GUICtrlCreateInput()", 413 | "contents": "GUICtrlCreateInput(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 414 | }, { 415 | "trigger": "GUICtrlCreateLabel()", 416 | "contents": "GUICtrlCreateLabel(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 417 | }, { 418 | "trigger": "GUICtrlCreateList()", 419 | "contents": "GUICtrlCreateList(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 420 | }, { 421 | "trigger": "GUICtrlCreateListView()", 422 | "contents": "GUICtrlCreateListView(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 423 | }, { 424 | "trigger": "GUICtrlCreateListViewItem()", 425 | "contents": "GUICtrlCreateListViewItem(${1:text}, ${2:listviewID})" 426 | }, { 427 | "trigger": "GUICtrlCreateMenu()", 428 | "contents": "GUICtrlCreateMenu(${1:submenutext}${2:, ${3:[menuID]}${4:, ${5:[menuentry]}}})" 429 | }, { 430 | "trigger": "GUICtrlCreateMenuItem()", 431 | "contents": "GUICtrlCreateMenuItem(${1:text}, ${2:menuID}${3:, ${4:[menuentry]}${5:, ${6:[menuradioitem]}}})" 432 | }, { 433 | "trigger": "GUICtrlCreateMonthCal()", 434 | "contents": "GUICtrlCreateMonthCal(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 435 | }, { 436 | "trigger": "GUICtrlCreateObj()", 437 | "contents": "GUICtrlCreateObj(${1:ObjectVar}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}}})" 438 | }, { 439 | "trigger": "GUICtrlCreatePic()", 440 | "contents": "GUICtrlCreatePic(${1:filename}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 441 | }, { 442 | "trigger": "GUICtrlCreateProgress()", 443 | "contents": "GUICtrlCreateProgress(${1:left}, ${2:top}${3:, ${4:[width]}${5:, ${6:[height]}${7:, ${8:[style]}${9:, ${10:[exStyle]}}}}})" 444 | }, { 445 | "trigger": "GUICtrlCreateRadio()", 446 | "contents": "GUICtrlCreateRadio(${1:text}, ${2:left}, ${3:top}${4:, ${5:[width]}${6:, ${7:[height]}${8:, ${9:[style]}${10:, ${11:[exStyle]}}}}})" 447 | }, { 448 | "trigger": "GUICtrlCreateSlider()", 449 | "contents": "GUICtrlCreateSlider(${1:left}, ${2:top}${3:, ${4:[width]}${5:, ${6:[height]}${7:, ${8:[style]}${9:, ${10:[exStyle]}}}}})" 450 | }, { 451 | "trigger": "GUICtrlCreateTab()", 452 | "contents": "GUICtrlCreateTab(${1:left}, ${2:top}${3:, ${4:[width]}${5:, ${6:[height]}${7:, ${8:[style]}${9:, ${10:[exStyle]}}}}})" 453 | }, { 454 | "trigger": "GUICtrlCreateTabItem()", 455 | "contents": "GUICtrlCreateTabItem(${1:text})" 456 | }, { 457 | "trigger": "GUICtrlCreateTreeView()", 458 | "contents": "GUICtrlCreateTreeView(${1:left}, ${2:top}${3:, ${4:[width]}${5:, ${6:[height]}${7:, ${8:[style]}${9:, ${10:[exStyle]}}}}})" 459 | }, { 460 | "trigger": "GUICtrlCreateTreeViewItem()", 461 | "contents": "GUICtrlCreateTreeViewItem(${1:text}, ${2:treeviewID})" 462 | }, { 463 | "trigger": "GUICtrlCreateUpdown()", 464 | "contents": "GUICtrlCreateUpdown(${1:inputcontrolID}, ${2:style})" 465 | }, { 466 | "trigger": "GUICtrlDelete()", 467 | "contents": "GUICtrlDelete(${1:controlID})" 468 | }, { 469 | "trigger": "GUICtrlGetHandle()", 470 | "contents": "GUICtrlGetHandle(${1:controlID})" 471 | }, { 472 | "trigger": "GUICtrlGetState()", 473 | "contents": "GUICtrlGetState(${1:${2:[controlID]}})" 474 | }, { 475 | "trigger": "GUICtrlRead()", 476 | "contents": "GUICtrlRead(${1:controlID}${2:, ${3:[advanced]}})" 477 | }, { 478 | "trigger": "GUICtrlRecvMsg()", 479 | "contents": "GUICtrlRecvMsg(${1:controlID}, ${2:msg}${3:, ${4:[wParam]}${5:, ${6:[lParamType]}}})" 480 | }, { 481 | "trigger": "GUICtrlRegisterListViewSort()", 482 | "contents": "GUICtrlRegisterListViewSort(${1:controlID}, ${2:function})" 483 | }, { 484 | "trigger": "GUICtrlSendMsg()", 485 | "contents": "GUICtrlSendMsg(${1:controlID}, ${2:msg}, ${3:wParam}, ${4:lParam})" 486 | }, { 487 | "trigger": "GUICtrlSendToDummy()", 488 | "contents": "GUICtrlSendToDummy(${1:controlID}${2:, ${3:[state]}})" 489 | }, { 490 | "trigger": "GUICtrlSetBkColor()", 491 | "contents": "GUICtrlSetBkColor(${1:controlID}, ${2:backgroundcolor})" 492 | }, { 493 | "trigger": "GUICtrlSetColor()", 494 | "contents": "GUICtrlSetColor(${1:controlID}, ${2:textcolor})" 495 | }, { 496 | "trigger": "GUICtrlSetCursor()", 497 | "contents": "GUICtrlSetCursor(${1:controlID}, ${2:cursorID})" 498 | }, { 499 | "trigger": "GUICtrlSetData()", 500 | "contents": "GUICtrlSetData(${1:controlID}, ${2:data}${3:, ${4:[default]}})" 501 | }, { 502 | "trigger": "GUICtrlSetDefBkColor()", 503 | "contents": "GUICtrlSetDefBkColor(${1:defbkcolor}${2:, ${3:[winhandle]}})" 504 | }, { 505 | "trigger": "GUICtrlSetDefColor()", 506 | "contents": "GUICtrlSetDefColor(${1:deftextcolor}${2:, ${3:[winhandle]}})" 507 | }, { 508 | "trigger": "GUICtrlSetFont()", 509 | "contents": "GUICtrlSetFont(${1:controlID}, ${2:size}${3:, ${4:[weight]}${5:, ${6:[attribute]}${7:, ${8:[fontname]}${9:, ${10:[quality]}}}}})" 510 | }, { 511 | "trigger": "GUICtrlSetGraphic()", 512 | "contents": "GUICtrlSetGraphic(${1:controlID}, ${2:type}${3:, ${4:[par1]}${5:, ${6:[... par6]}}})" 513 | }, { 514 | "trigger": "GUICtrlSetImage()", 515 | "contents": "GUICtrlSetImage(${1:controlID}, ${2:filename}${3:, ${4:[iconname]}${5:, ${6:[icontype]}}})" 516 | }, { 517 | "trigger": "GUICtrlSetLimit()", 518 | "contents": "GUICtrlSetLimit(${1:controlID}, ${2:max}${3:, ${4:[min]}})" 519 | }, { 520 | "trigger": "GUICtrlSetOnEvent()", 521 | "contents": "GUICtrlSetOnEvent(${1:controlID}, ${2:function})" 522 | }, { 523 | "trigger": "GUICtrlSetPos()", 524 | "contents": "GUICtrlSetPos(${1:controlID}, ${2:left}${3:, ${4:[top]}${5:, ${6:[width]}${7:, ${8:[height]}}}})" 525 | }, { 526 | "trigger": "GUICtrlSetResizing()", 527 | "contents": "GUICtrlSetResizing(${1:controlID}, ${2:resizing})" 528 | }, { 529 | "trigger": "GUICtrlSetState()", 530 | "contents": "GUICtrlSetState(${1:controlID}, ${2:state})" 531 | }, { 532 | "trigger": "GUICtrlSetStyle()", 533 | "contents": "GUICtrlSetStyle(${1:controlID}, ${2:style}${3:, ${4:[exStyle]}})" 534 | }, { 535 | "trigger": "GUICtrlSetTip()", 536 | "contents": "GUICtrlSetTip(${1:controlID}, ${2:tiptext}${3:, \"${4:[title]}\"${5:, ${6:[icon]}${7:, ${8:[options]}}}})" 537 | }, { 538 | "trigger": "GUIDelete()", 539 | "contents": "GUIDelete(${1:${2:[winhandle]}})" 540 | }, { 541 | "trigger": "GUIGetCursorInfo()", 542 | "contents": "GUIGetCursorInfo(${1:${2:[winhandle]}})" 543 | }, { 544 | "trigger": "GUIGetMsg()", 545 | "contents": "GUIGetMsg(${1:${2:[advanced]}})" 546 | }, { 547 | "trigger": "GUIGetStyle()", 548 | "contents": "GUIGetStyle(${1:${2:[winhandle]}})" 549 | }, { 550 | "trigger": "GUIRegisterMsg()", 551 | "contents": "GUIRegisterMsg(${1:msgID}, ${2:function})" 552 | }, { 553 | "trigger": "GUISetAccelerators()", 554 | "contents": "GUISetAccelerators(${1:accelerators}${2:, ${3:[winhandle]}})" 555 | }, { 556 | "trigger": "GUISetBkColor()", 557 | "contents": "GUISetBkColor(${1:background}${2:, ${3:[winhandle]}})" 558 | }, { 559 | "trigger": "GUISetCoord()", 560 | "contents": "GUISetCoord(${1:left}, ${2:top}${3:, ${4:[width]}${5:, ${6:[height]}${7:, ${8:[winhandle]}}}})" 561 | }, { 562 | "trigger": "GUISetCursor()", 563 | "contents": "GUISetCursor(${1:${2:[cursorID]}${3:, ${4:[override]}${5:, ${6:[winhandle]}}}})" 564 | }, { 565 | "trigger": "GUISetFont()", 566 | "contents": "GUISetFont(${1:size}${2:, ${3:[weight]}${4:, ${5:[attribute]}${6:, ${7:[fontname]}${8:, ${9:[winhandle]}${10:, ${11:[quality]}}}}}})" 567 | }, { 568 | "trigger": "GUISetHelp()", 569 | "contents": "GUISetHelp(${1:helpfile}${2:, ${3:[winhandle]}})" 570 | }, { 571 | "trigger": "GUISetIcon()", 572 | "contents": "GUISetIcon(${1:iconfile}${2:, ${3:[iconID]}${4:, ${5:[winhandle]}}})" 573 | }, { 574 | "trigger": "GUISetOnEvent()", 575 | "contents": "GUISetOnEvent(${1:specialID}, ${2:function}${3:, ${4:[winhandle]}})" 576 | }, { 577 | "trigger": "GUISetState()", 578 | "contents": "GUISetState(${1:${2:[flag]}${3:, ${4:[winhandle]}}})" 579 | }, { 580 | "trigger": "GUISetStyle()", 581 | "contents": "GUISetStyle(${1:Style}, ${2:ExStyle}${3:, ${4:[winhandle]}})" 582 | }, { 583 | "trigger": "GUIStartGroup()", 584 | "contents": "GUIStartGroup(${1:${2:[winhandle]}})" 585 | }, { 586 | "trigger": "GUISwitch()", 587 | "contents": "GUISwitch(${1:winhandle}${2:, ${3:[tabitemID]}})" 588 | }, { 589 | "trigger": "Hex()", 590 | "contents": "Hex(${1:expression}${2:, ${3:[length]}})" 591 | }, { 592 | "trigger": "HotKeySet()", 593 | "contents": "HotKeySet(${1:key}${2:, \"${3:[function]}\"})" 594 | }, { 595 | "trigger": "HttpSetProxy()", 596 | "contents": "HttpSetProxy(${1:mode}${2:, \"${3:[proxy:port]}\"${4:, \"${5:[username]}\"${6:, \"${7:[password]}\"}}})" 597 | }, { 598 | "trigger": "HttpSetUserAgent()", 599 | "contents": "HttpSetUserAgent(${1:user agent})" 600 | }, { 601 | "trigger": "HWnd()", 602 | "contents": "HWnd(${1:expression})" 603 | }, { 604 | "trigger": "InetClose()", 605 | "contents": "InetClose(${1:handle})" 606 | }, { 607 | "trigger": "InetGet()", 608 | "contents": "InetGet(${1:URL}, ${2:filename}${3:, ${4:[options]}${5:, ${6:[background]}}})" 609 | }, { 610 | "trigger": "InetGetInfo()", 611 | "contents": "InetGetInfo(${1:${2:[handle]}${3:, ${4:[index]}}})" 612 | }, { 613 | "trigger": "InetGetSize()", 614 | "contents": "InetGetSize(${1:URL}${2:, ${3:[options]}})" 615 | }, { 616 | "trigger": "InetRead()", 617 | "contents": "InetRead(${1:URL}${2:, ${3:[options]}})" 618 | }, { 619 | "trigger": "IniDelete()", 620 | "contents": "IniDelete(${1:filename}, ${2:section}${3:, \"${4:[key]}\"})" 621 | }, { 622 | "trigger": "IniRead()", 623 | "contents": "IniRead(${1:filename}, ${2:section}, ${3:key}, ${4:default})" 624 | }, { 625 | "trigger": "IniReadSection()", 626 | "contents": "IniReadSection(${1:filename}, ${2:section})" 627 | }, { 628 | "trigger": "IniReadSectionNames()", 629 | "contents": "IniReadSectionNames(${1:filename})" 630 | }, { 631 | "trigger": "IniRenameSection()", 632 | "contents": "IniRenameSection(${1:filename}, ${2:section}, ${3:new section}${4:, ${5:[flag]}})" 633 | }, { 634 | "trigger": "IniWrite()", 635 | "contents": "IniWrite(${1:filename}, ${2:section}, ${3:key}, ${4:value})" 636 | }, { 637 | "trigger": "IniWriteSection()", 638 | "contents": "IniWriteSection(${1:filename}, ${2:section}, ${3:data}${4:, ${5:[index]}})" 639 | }, { 640 | "trigger": "InputBox()", 641 | "contents": "InputBox(${1:title}, ${2:prompt}${3:, \"${4:[default]}\"${5:, \"${6:[password char]}\"${7:, ${8:[width]}${9:, ${10:[height]}${11:, ${12:[left]}${13:, ${14:[top]}${15:, ${16:[timeout]}${17:, ${18:[hwnd]}}}}}}}}})" 642 | }, { 643 | "trigger": "Int()", 644 | "contents": "Int(${1:expression}${2:, ${3:[flag]}})" 645 | }, { 646 | "trigger": "IsAdmin()", 647 | "contents": "IsAdmin()" 648 | }, { 649 | "trigger": "IsArray()", 650 | "contents": "IsArray(${1:variable})" 651 | }, { 652 | "trigger": "IsBinary()", 653 | "contents": "IsBinary(${1:expression})" 654 | }, { 655 | "trigger": "IsBool()", 656 | "contents": "IsBool(${1:variable})" 657 | }, { 658 | "trigger": "IsDeclared()", 659 | "contents": "IsDeclared(${1:expression})" 660 | }, { 661 | "trigger": "IsDllStruct()", 662 | "contents": "IsDllStruct(${1:variable})" 663 | }, { 664 | "trigger": "IsFloat()", 665 | "contents": "IsFloat(${1:variable})" 666 | }, { 667 | "trigger": "IsHWnd()", 668 | "contents": "IsHWnd(${1:variable})" 669 | }, { 670 | "trigger": "IsInt()", 671 | "contents": "IsInt(${1:variable})" 672 | }, { 673 | "trigger": "IsKeyword()", 674 | "contents": "IsKeyword(${1:variable})" 675 | }, { 676 | "trigger": "IsNumber()", 677 | "contents": "IsNumber(${1:variable})" 678 | }, { 679 | "trigger": "IsObj()", 680 | "contents": "IsObj(${1:variable})" 681 | }, { 682 | "trigger": "IsPtr()", 683 | "contents": "IsPtr(${1:variable})" 684 | }, { 685 | "trigger": "IsString()", 686 | "contents": "IsString(${1:variable})" 687 | }, { 688 | "trigger": "Log()", 689 | "contents": "Log(${1:expression})" 690 | }, { 691 | "trigger": "MemGetStats()", 692 | "contents": "MemGetStats()" 693 | }, { 694 | "trigger": "Mod()", 695 | "contents": "Mod(${1:value1}, ${2:value2})" 696 | }, { 697 | "trigger": "MouseClick()", 698 | "contents": "MouseClick(\"${1:button}\", ${2:${3:[x}${4:, ${5:y}${6:, ${7:[clicks}${8:, ${9:[speed]]]}}}}})" 699 | }, { 700 | "trigger": "MouseClickDrag()", 701 | "contents": "MouseClickDrag(${1:button}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}${6:, ${7:[speed]}})" 702 | }, { 703 | "trigger": "MouseDown()", 704 | "contents": "MouseDown(${1:button})" 705 | }, { 706 | "trigger": "MouseGetCursor()", 707 | "contents": "MouseGetCursor()" 708 | }, { 709 | "trigger": "MouseGetPos()", 710 | "contents": "MouseGetPos(${1:${2:[dimension]}})" 711 | }, { 712 | "trigger": "MouseMove()", 713 | "contents": "MouseMove(${1:x}, ${2:y}${3:, ${4:[speed]}})" 714 | }, { 715 | "trigger": "MouseUp()", 716 | "contents": "MouseUp(${1:button})" 717 | }, { 718 | "trigger": "MouseWheel()", 719 | "contents": "MouseWheel(${1:direction}${2:, ${3:[clicks]}})" 720 | }, { 721 | "trigger": "MsgBox()", 722 | "contents": "MsgBox(${1:flag}, ${2:title}, ${3:text}${4:, ${5:[timeout]}${6:, ${7:[hwnd]}}})" 723 | }, { 724 | "trigger": "Number()", 725 | "contents": "Number(${1:expression}${2:, ${3:[flag]}})" 726 | }, { 727 | "trigger": "ObjCreate()", 728 | "contents": "ObjCreate(${1:classname}, ${2:username}${3:, \"${4:[servername]}\"${5:, \"${6:[password]}\"}})" 729 | }, { 730 | "trigger": "ObjCreateInterface()", 731 | "contents": "ObjCreateInterface(${1:CLSID}, ${2:IID}, ${3:interfacedescription}${4:, \"${5:[flag]}\"})" 732 | }, { 733 | "trigger": "ObjEvent()", 734 | "contents": "ObjEvent(${1:\\$ObjectVar}, ${2:functionprefix}${3:, \"${4:[interface name]}\"})" 735 | }, { 736 | "trigger": "ObjGet()", 737 | "contents": "ObjGet(${1:filename}${2:, \"${3:[classname]}\"})" 738 | }, { 739 | "trigger": "ObjName()", 740 | "contents": "ObjName(${1:\\$Objectvariable}, ${2:Flag})" 741 | }, { 742 | "trigger": "OnAutoItExitRegister()", 743 | "contents": "OnAutoItExitRegister(${1:function})" 744 | }, { 745 | "trigger": "OnAutoItExitUnRegister()", 746 | "contents": "OnAutoItExitUnRegister(${1:function})" 747 | }, { 748 | "trigger": "Ping()", 749 | "contents": "Ping(${1:address\/hostname}${2:, ${3:[timeout]}})" 750 | }, { 751 | "trigger": "PixelChecksum()", 752 | "contents": "PixelChecksum(${1:left}, ${2:top}, ${3:right}, ${4:bottom}${5:, ${6:[step]}${7:, ${8:[hwnd]}${9:, ${10:[mode]}}}})" 753 | }, { 754 | "trigger": "PixelGetColor()", 755 | "contents": "PixelGetColor(${1:x}, ${2:y}${3:, ${4:[hwnd]}})" 756 | }, { 757 | "trigger": "PixelSearch()", 758 | "contents": "PixelSearch(${1:left}, ${2:top}, ${3:right}, ${4:bottom}, ${5:color}${6:, ${7:[shade-variation]}${8:, ${9:[step]}${10:, ${11:[hwnd]}}}})" 759 | }, { 760 | "trigger": "PluginClose()", 761 | "contents": "PluginClose(${1:dllhandle})" 762 | }, { 763 | "trigger": "PluginOpen()", 764 | "contents": "PluginOpen(${1:filename})" 765 | }, { 766 | "trigger": "ProcessClose()", 767 | "contents": "ProcessClose(${1:process})" 768 | }, { 769 | "trigger": "ProcessExists()", 770 | "contents": "ProcessExists(${1:process})" 771 | }, { 772 | "trigger": "ProcessGetStats()", 773 | "contents": "ProcessGetStats(${1:\"${2:[process]}\"${3:, ${4:[type]}}})" 774 | }, { 775 | "trigger": "ProcessList()", 776 | "contents": "ProcessList(${1:\"${2:[name]}\"})" 777 | }, { 778 | "trigger": "ProcessSetPriority()", 779 | "contents": "ProcessSetPriority(${1:process}, ${2:priority})" 780 | }, { 781 | "trigger": "ProcessWait()", 782 | "contents": "ProcessWait(${1:process}${2:, ${3:[timeout]}})" 783 | }, { 784 | "trigger": "ProcessWaitClose()", 785 | "contents": "ProcessWaitClose(${1:process}${2:, ${3:[timeout]}})" 786 | }, { 787 | "trigger": "ProgressOff()", 788 | "contents": "ProgressOff()" 789 | }, { 790 | "trigger": "ProgressOn()", 791 | "contents": "ProgressOn(${1:title}, ${2:maintext}${3:, \"${4:[subtext]}\"${5:, ${6:[x pos]}${7:, ${8:[y pos]}${9:, ${10:[opt]}}}}})" 792 | }, { 793 | "trigger": "ProgressSet()", 794 | "contents": "ProgressSet(${1:percent}${2:, \"${3:[subtext]}\"${4:, \"${5:[maintext]}\"}})" 795 | }, { 796 | "trigger": "Ptr()", 797 | "contents": "Ptr(${1:expression})" 798 | }, { 799 | "trigger": "Random()", 800 | "contents": "Random(${1:${2:[Min]}${3:, ${4:[Max]}${5:, ${6:[Flag]}}}})" 801 | }, { 802 | "trigger": "RegDelete()", 803 | "contents": "RegDelete(${1:keyname}${2:, \"${3:[valuename]}\"})" 804 | }, { 805 | "trigger": "RegEnumKey()", 806 | "contents": "RegEnumKey(${1:keyname}, ${2:instance})" 807 | }, { 808 | "trigger": "RegEnumVal()", 809 | "contents": "RegEnumVal(${1:keyname}, ${2:instance})" 810 | }, { 811 | "trigger": "RegRead()", 812 | "contents": "RegRead(${1:keyname}, ${2:valuename})" 813 | }, { 814 | "trigger": "RegWrite()", 815 | "contents": "RegWrite(${1:keyname}, ${2:valuename}${3:, \"${4:[type]}\"${5:, ${6:[value]}}})" 816 | }, { 817 | "trigger": "Round()", 818 | "contents": "Round(${1:expression}${2:, ${3:[decimalplaces]}})" 819 | }, { 820 | "trigger": "Run()", 821 | "contents": "Run(${1:program}${2:, \"${3:[workingdir]}\"${4:, ${5:[showflag]}${6:, ${7:[optflag]}}}})" 822 | }, { 823 | "trigger": "RunAs()", 824 | "contents": "RunAs(${1:username}, ${2:domain}, ${3:password}, ${4:logonflag}, ${5:program}${6:, \"${7:[workingdir]}\"${8:, ${9:[showflag]}${10:, ${11:[optflag]}}}})" 825 | }, { 826 | "trigger": "RunAsWait()", 827 | "contents": "RunAsWait(${1:username}, ${2:domain}, ${3:password}, ${4:logonflag}, ${5:program}${6:, \"${7:[workingdir]}\"${8:, ${9:[showflag]}${10:, ${11:[optflag]}}}})" 828 | }, { 829 | "trigger": "RunWait()", 830 | "contents": "RunWait(${1:program}${2:, \"${3:[workingdir]}\"${4:, ${5:[showflag]}${6:, ${7:[optflag]}}}})" 831 | }, { 832 | "trigger": "Send()", 833 | "contents": "Send(\"${1:keys}\"${2:, ${3:[flag]}})" 834 | }, { 835 | "trigger": "SendKeepActive()", 836 | "contents": "SendKeepActive(${1:title}${2:, \"${3:[text]}\"})" 837 | }, { 838 | "trigger": "SetError()", 839 | "contents": "SetError(${1:code}${2:, ${3:[extended]}${4:, ${5:[return value]}}})" 840 | }, { 841 | "trigger": "SetExtended()", 842 | "contents": "SetExtended(${1:code}${2:, ${3:[return value]}})" 843 | }, { 844 | "trigger": "ShellExecute()", 845 | "contents": "ShellExecute(${1:filename}${2:, \"${3:[parameters]}\"${4:, \"${5:[workingdir]}\"${6:, \"${7:[verb]}\"${8:, ${9:[showflag]}}}}})" 846 | }, { 847 | "trigger": "ShellExecuteWait()", 848 | "contents": "ShellExecuteWait(${1:filename}${2:, \"${3:[parameters]}\"${4:, \"${5:[workingdir]}\"${6:, \"${7:[verb]}\"${8:, ${9:[showflag]}}}}})" 849 | }, { 850 | "trigger": "Shutdown()", 851 | "contents": "Shutdown(${1:code}${2:, ${3:[reason]}})" 852 | }, { 853 | "trigger": "Sin()", 854 | "contents": "Sin(${1:expression})" 855 | }, { 856 | "trigger": "Sleep()", 857 | "contents": "Sleep(${1:delay})" 858 | }, { 859 | "trigger": "SoundPlay()", 860 | "contents": "SoundPlay(${1:filename}${2:, ${3:[wait]}})" 861 | }, { 862 | "trigger": "SoundSetWaveVolume()", 863 | "contents": "SoundSetWaveVolume(${1:percent})" 864 | }, { 865 | "trigger": "SplashImageOn()", 866 | "contents": "SplashImageOn(${1:title}, ${2:file}${3:, ${4:[width]}${5:, ${6:[height]}${7:, ${8:[x pos]}${9:, ${10:[y pos]}${11:, ${12:[opt]}}}}}})" 867 | }, { 868 | "trigger": "SplashOff()", 869 | "contents": "SplashOff()" 870 | }, { 871 | "trigger": "SplashTextOn()", 872 | "contents": "SplashTextOn(${1:title}, ${2:text}${3:, ${4:[w]}${5:, ${6:[h]}${7:, ${8:[x pos]}${9:, ${10:[y pos]}${11:, ${12:[opt]}${13:, \"${14:[fontname]}\"${15:, ${16:[fontsz]}${17:, ${18:[fontwt]}}}}}}}}})" 873 | }, { 874 | "trigger": "Sqrt()", 875 | "contents": "Sqrt(${1:expression})" 876 | }, { 877 | "trigger": "SRandom()", 878 | "contents": "SRandom(${1:Seed})" 879 | }, { 880 | "trigger": "StatusbarGetText()", 881 | "contents": "StatusbarGetText(${1:title}${2:, \"${3:[text]}\"${4:, ${5:[part]}}})" 882 | }, { 883 | "trigger": "StderrRead()", 884 | "contents": "StderrRead(${1:processid}${2:, ${3:[peek = false]}${4:, ${5:[binary = false]}}})" 885 | }, { 886 | "trigger": "StdinWrite()", 887 | "contents": "StdinWrite(${1:processid}${2:, ${3:[data]}})" 888 | }, { 889 | "trigger": "StdioClose()", 890 | "contents": "StdioClose(${1:processid})" 891 | }, { 892 | "trigger": "StdoutRead()", 893 | "contents": "StdoutRead(${1:processid}${2:, ${3:[peek = false]}${4:, ${5:[binary = false]}}})" 894 | }, { 895 | "trigger": "String()", 896 | "contents": "String(${1:expression})" 897 | }, { 898 | "trigger": "StringAddCR()", 899 | "contents": "StringAddCR(${1:string})" 900 | }, { 901 | "trigger": "StringCompare()", 902 | "contents": "StringCompare(${1:string1}, ${2:string2}${3:, ${4:[casesense]}})" 903 | }, { 904 | "trigger": "StringFormat()", 905 | "contents": "StringFormat(${1:format control}, ${2:var1}${3:, ${4:[... var32]}})" 906 | }, { 907 | "trigger": "StringFromASCIIArray()", 908 | "contents": "StringFromASCIIArray(${1:array}${2:, ${3:[start]}${4:, ${5:[end]}${6:, ${7:[encoding]}}}})" 909 | }, { 910 | "trigger": "StringInStr()", 911 | "contents": "StringInStr(${1:string}, ${2:substring}${3:, ${4:[casesense]}${5:, ${6:[occurrence]}${7:, ${8:[start]}${9:, ${10:[count]}}}}})" 912 | }, { 913 | "trigger": "StringIsAlNum()", 914 | "contents": "StringIsAlNum(${1:string})" 915 | }, { 916 | "trigger": "StringIsAlpha()", 917 | "contents": "StringIsAlpha(${1:string})" 918 | }, { 919 | "trigger": "StringIsASCII()", 920 | "contents": "StringIsASCII(${1:string})" 921 | }, { 922 | "trigger": "StringIsDigit()", 923 | "contents": "StringIsDigit(${1:string})" 924 | }, { 925 | "trigger": "StringIsFloat()", 926 | "contents": "StringIsFloat(${1:string})" 927 | }, { 928 | "trigger": "StringIsInt()", 929 | "contents": "StringIsInt(${1:string})" 930 | }, { 931 | "trigger": "StringIsLower()", 932 | "contents": "StringIsLower(${1:string})" 933 | }, { 934 | "trigger": "StringIsSpace()", 935 | "contents": "StringIsSpace(${1:string})" 936 | }, { 937 | "trigger": "StringIsUpper()", 938 | "contents": "StringIsUpper(${1:string})" 939 | }, { 940 | "trigger": "StringIsXDigit()", 941 | "contents": "StringIsXDigit(${1:string})" 942 | }, { 943 | "trigger": "StringLeft()", 944 | "contents": "StringLeft(${1:string}, ${2:count})" 945 | }, { 946 | "trigger": "StringLen()", 947 | "contents": "StringLen(${1:string})" 948 | }, { 949 | "trigger": "StringLower()", 950 | "contents": "StringLower(${1:string})" 951 | }, { 952 | "trigger": "StringMid()", 953 | "contents": "StringMid(${1:string}, ${2:start}${3:, ${4:[count]}})" 954 | }, { 955 | "trigger": "StringRegExp()", 956 | "contents": "StringRegExp(${1:test}, ${2:pattern}${3:, ${4:[flag]}${5:, ${6:[offset]}}})" 957 | }, { 958 | "trigger": "StringRegExpReplace()", 959 | "contents": "StringRegExpReplace(${1:test}, ${2:pattern}, ${3:replace}${4:, ${5:[count]}})" 960 | }, { 961 | "trigger": "StringReplace()", 962 | "contents": "StringReplace(${1:string}, ${2:searchstring\/start}, ${3:replacestring}${4:, ${5:[occurrence]}${6:, ${7:[casesense]}}})" 963 | }, { 964 | "trigger": "StringRight()", 965 | "contents": "StringRight(${1:string}, ${2:count})" 966 | }, { 967 | "trigger": "StringSplit()", 968 | "contents": "StringSplit(${1:string}, ${2:delimiters}${3:, ${4:[flag]}})" 969 | }, { 970 | "trigger": "StringStripCR()", 971 | "contents": "StringStripCR(${1:string})" 972 | }, { 973 | "trigger": "StringStripWS()", 974 | "contents": "StringStripWS(${1:string}, ${2:flag})" 975 | }, { 976 | "trigger": "StringToASCIIArray()", 977 | "contents": "StringToASCIIArray(${1:string}${2:, ${3:[start]}${4:, ${5:[end]}${6:, ${7:[encoding]}}}})" 978 | }, { 979 | "trigger": "StringToBinary()", 980 | "contents": "StringToBinary(${1:expression}${2:, ${3:[flag]}})" 981 | }, { 982 | "trigger": "StringTrimLeft()", 983 | "contents": "StringTrimLeft(${1:string}, ${2:count})" 984 | }, { 985 | "trigger": "StringTrimRight()", 986 | "contents": "StringTrimRight(${1:string}, ${2:count})" 987 | }, { 988 | "trigger": "StringUpper()", 989 | "contents": "StringUpper(${1:string})" 990 | }, { 991 | "trigger": "Tan()", 992 | "contents": "Tan(${1:expression})" 993 | }, { 994 | "trigger": "TCPAccept()", 995 | "contents": "TCPAccept(${1:mainsocket})" 996 | }, { 997 | "trigger": "TCPCloseSocket()", 998 | "contents": "TCPCloseSocket(${1:socket})" 999 | }, { 1000 | "trigger": "TCPConnect()", 1001 | "contents": "TCPConnect(${1:IPAddr}, ${2:port})" 1002 | }, { 1003 | "trigger": "TCPListen()", 1004 | "contents": "TCPListen(${1:IPAddr}, ${2:port}${3:, ${4:[MaxPendingConnection]}})" 1005 | }, { 1006 | "trigger": "TCPNameToIP()", 1007 | "contents": "TCPNameToIP(${1:name})" 1008 | }, { 1009 | "trigger": "TCPRecv()", 1010 | "contents": "TCPRecv(${1:mainsocket}, ${2:maxlen}${3:, ${4:[flag]}})" 1011 | }, { 1012 | "trigger": "TCPSend()", 1013 | "contents": "TCPSend(${1:mainsocket}, ${2:data})" 1014 | }, { 1015 | "trigger": "TCPShutdown()", 1016 | "contents": "TCPShutdown()" 1017 | }, { 1018 | "trigger": "TCPStartup()", 1019 | "contents": "TCPStartup()" 1020 | }, { 1021 | "trigger": "TimerDiff()", 1022 | "contents": "TimerDiff(${1:handle})" 1023 | }, { 1024 | "trigger": "TimerInit()", 1025 | "contents": "TimerInit()" 1026 | }, { 1027 | "trigger": "ToolTip()", 1028 | "contents": "ToolTip(${1:text}${2:, ${3:[x]}${4:, ${5:[y]}${6:, \"${7:[title]}\"${8:, ${9:[icon]}${10:, ${11:[options]}}}}}})" 1029 | }, { 1030 | "trigger": "TrayCreateItem()", 1031 | "contents": "TrayCreateItem(${1:text}${2:, ${3:[menuID]}${4:, ${5:[menuentry]}${6:, ${7:[menuradioitem]}}}})" 1032 | }, { 1033 | "trigger": "TrayCreateMenu()", 1034 | "contents": "TrayCreateMenu(${1:sub\/menutext}${2:, ${3:[menuID]}${4:, ${5:[menuentry]}}})" 1035 | }, { 1036 | "trigger": "TrayGetMsg()", 1037 | "contents": "TrayGetMsg()" 1038 | }, { 1039 | "trigger": "TrayItemDelete()", 1040 | "contents": "TrayItemDelete(${1:controlID})" 1041 | }, { 1042 | "trigger": "TrayItemGetHandle()", 1043 | "contents": "TrayItemGetHandle(${1:controlID})" 1044 | }, { 1045 | "trigger": "TrayItemGetState()", 1046 | "contents": "TrayItemGetState(${1:${2:[controlID]}})" 1047 | }, { 1048 | "trigger": "TrayItemGetText()", 1049 | "contents": "TrayItemGetText(${1:controlID})" 1050 | }, { 1051 | "trigger": "TrayItemSetOnEvent()", 1052 | "contents": "TrayItemSetOnEvent(${1:itemID}, ${2:function})" 1053 | }, { 1054 | "trigger": "TrayItemSetState()", 1055 | "contents": "TrayItemSetState(${1:controlID}, ${2:state})" 1056 | }, { 1057 | "trigger": "TrayItemSetText()", 1058 | "contents": "TrayItemSetText(${1:controlID}, ${2:text})" 1059 | }, { 1060 | "trigger": "TraySetClick()", 1061 | "contents": "TraySetClick(${1:flag})" 1062 | }, { 1063 | "trigger": "TraySetIcon()", 1064 | "contents": "TraySetIcon(${1:${2:[filename]}${3:, ${4:[iconID]}}})" 1065 | }, { 1066 | "trigger": "TraySetOnEvent()", 1067 | "contents": "TraySetOnEvent(${1:specialID}, ${2:function})" 1068 | }, { 1069 | "trigger": "TraySetPauseIcon()", 1070 | "contents": "TraySetPauseIcon(${1:${2:[filename]}${3:, ${4:[iconID]}}})" 1071 | }, { 1072 | "trigger": "TraySetState()", 1073 | "contents": "TraySetState(${1:${2:[flag]}})" 1074 | }, { 1075 | "trigger": "TraySetToolTip()", 1076 | "contents": "TraySetToolTip(${1:${2:[text]}})" 1077 | }, { 1078 | "trigger": "TrayTip()", 1079 | "contents": "TrayTip(${1:title}, ${2:text}, ${3:timeout}${4:, ${5:[option]}})" 1080 | }, { 1081 | "trigger": "UBound()", 1082 | "contents": "UBound(${1:Array}${2:, ${3:[Dimension]}})" 1083 | }, { 1084 | "trigger": "UDPBind()", 1085 | "contents": "UDPBind(${1:IPAddr}, ${2:port})" 1086 | }, { 1087 | "trigger": "UDPCloseSocket()", 1088 | "contents": "UDPCloseSocket(${1:socketarray})" 1089 | }, { 1090 | "trigger": "UDPOpen()", 1091 | "contents": "UDPOpen(${1:IPAddr}, ${2:port}${3:, ${4:[flag]}})" 1092 | }, { 1093 | "trigger": "UDPRecv()", 1094 | "contents": "UDPRecv(${1:socketarray}, ${2:maxlen}${3:, ${4:[flag]}})" 1095 | }, { 1096 | "trigger": "UDPSend()", 1097 | "contents": "UDPSend(${1:socketarray}, ${2:data})" 1098 | }, { 1099 | "trigger": "VarGetType()", 1100 | "contents": "VarGetType(${1:expression})" 1101 | }, { 1102 | "trigger": "WinActivate()", 1103 | "contents": "WinActivate(${1:title}${2:, \"${3:[text]}\"})" 1104 | }, { 1105 | "trigger": "WinActive()", 1106 | "contents": "WinActive(${1:title}${2:, \"${3:[text]}\"})" 1107 | }, { 1108 | "trigger": "WinClose()", 1109 | "contents": "WinClose(${1:title}${2:, \"${3:[text]}\"})" 1110 | }, { 1111 | "trigger": "WinExists()", 1112 | "contents": "WinExists(${1:title}${2:, \"${3:[text]}\"})" 1113 | }, { 1114 | "trigger": "WinFlash()", 1115 | "contents": "WinFlash(${1:title}, ${2:text}, ${3:flashes}, ${4:delay})" 1116 | }, { 1117 | "trigger": "WinGetCaretPos()", 1118 | "contents": "WinGetCaretPos()" 1119 | }, { 1120 | "trigger": "WinGetClassList()", 1121 | "contents": "WinGetClassList(${1:title}${2:, \"${3:[text]}\"})" 1122 | }, { 1123 | "trigger": "WinGetClientSize()", 1124 | "contents": "WinGetClientSize(${1:title}${2:, \"${3:[text]}\"})" 1125 | }, { 1126 | "trigger": "WinGetHandle()", 1127 | "contents": "WinGetHandle(${1:title}${2:, \"${3:[text]}\"})" 1128 | }, { 1129 | "trigger": "WinGetPos()", 1130 | "contents": "WinGetPos(${1:title}${2:, \"${3:[text]}\"})" 1131 | }, { 1132 | "trigger": "WinGetProcess()", 1133 | "contents": "WinGetProcess(${1:title}${2:, \"${3:[text]}\"})" 1134 | }, { 1135 | "trigger": "WinGetState()", 1136 | "contents": "WinGetState(${1:title}${2:, \"${3:[text]}\"})" 1137 | }, { 1138 | "trigger": "WinGetText()", 1139 | "contents": "WinGetText(${1:title}${2:, \"${3:[text]}\"})" 1140 | }, { 1141 | "trigger": "WinGetTitle()", 1142 | "contents": "WinGetTitle(${1:title}${2:, \"${3:[text]}\"})" 1143 | }, { 1144 | "trigger": "WinKill()", 1145 | "contents": "WinKill(${1:title}${2:, \"${3:[text]}\"})" 1146 | }, { 1147 | "trigger": "WinList()", 1148 | "contents": "WinList(${1:\"${2:[title]}\"${3:, \"${4:[text]}\"}})" 1149 | }, { 1150 | "trigger": "WinMenuSelectItem()", 1151 | "contents": "WinMenuSelectItem(${1:title}, ${2:text}, ${3:item}${4:, \"${5:[item]}\"${6:, \"${7:[item]}\"${8:, \"${9:[item]}\"${10:, \"${11:[item]}\"${12:, \"${13:[item]}\"${14:, \"${15:[item]}\"}}}}}})" 1152 | }, { 1153 | "trigger": "WinMinimizeAll()", 1154 | "contents": "WinMinimizeAll()" 1155 | }, { 1156 | "trigger": "WinMinimizeAllUndo()", 1157 | "contents": "WinMinimizeAllUndo()" 1158 | }, { 1159 | "trigger": "WinMove()", 1160 | "contents": "WinMove(${1:title}, ${2:text}, ${3:x}, ${4:y}${5:, ${6:[width]}${7:, ${8:[height]}${9:, ${10:[speed]}}}})" 1161 | }, { 1162 | "trigger": "WinSetOnTop()", 1163 | "contents": "WinSetOnTop(${1:title}, ${2:text}, ${3:flag})" 1164 | }, { 1165 | "trigger": "WinSetState()", 1166 | "contents": "WinSetState(${1:title}, ${2:text}, ${3:flag})" 1167 | }, { 1168 | "trigger": "WinSetTitle()", 1169 | "contents": "WinSetTitle(${1:title}, ${2:text}, ${3:newtitle})" 1170 | }, { 1171 | "trigger": "WinSetTrans()", 1172 | "contents": "WinSetTrans(${1:title}, ${2:text}, ${3:transparency})" 1173 | }, { 1174 | "trigger": "WinWait()", 1175 | "contents": "WinWait(${1:title}${2:, \"${3:[text]}\"${4:, ${5:[timeout]}}})" 1176 | }, { 1177 | "trigger": "WinWaitActive()", 1178 | "contents": "WinWaitActive(${1:title}${2:, \"${3:[text]}\"${4:, ${5:[timeout]}}})" 1179 | }, { 1180 | "trigger": "WinWaitClose()", 1181 | "contents": "WinWaitClose(${1:title}${2:, \"${3:[text]}\"${4:, ${5:[timeout]}}})" 1182 | }, { 1183 | "trigger": "WinWaitNotActive()", 1184 | "contents": "WinWaitNotActive(${1:title}${2:, \"${3:[text]}\"${4:, ${5:[timeout]}}})" 1185 | }] 1186 | } 1187 | -------------------------------------------------------------------------------- /Completions/GUIControlStyles.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "$WS_BORDER", "contents": "$WS_BORDER" }, 5 | { "trigger": "$WS_POPUP", "contents": "$WS_POPUP" }, 6 | { "trigger": "$WS_CAPTION", "contents": "$WS_CAPTION" }, 7 | { "trigger": "$WS_CLIPCHILDREN", "contents": "$WS_CLIPCHILDREN" }, 8 | { "trigger": "$WS_CLIPSIBLINGS", "contents": "$WS_CLIPSIBLINGS" }, 9 | { "trigger": "$WS_DISABLED", "contents": "$WS_DISABLED" }, 10 | { "trigger": "$WS_DLGFRAME", "contents": "$WS_DLGFRAME" }, 11 | { "trigger": "$WS_HSCROLL", "contents": "$WS_HSCROLL" }, 12 | { "trigger": "$WS_MAXIMIZE", "contents": "$WS_MAXIMIZE" }, 13 | { "trigger": "$WS_MAXIMIZEBOX", "contents": "$WS_MAXIMIZEBOX" }, 14 | { "trigger": "$WS_MINIMIZE", "contents": "$WS_MINIMIZE" }, 15 | { "trigger": "$WS_MINIMIZEBOX", "contents": "$WS_MINIMIZEBOX" }, 16 | { "trigger": "$WS_OVERLAPPED", "contents": "$WS_OVERLAPPED" }, 17 | { "trigger": "$WS_OVERLAPPEDWINDOW", "contents": "$WS_OVERLAPPEDWINDOW" }, 18 | { "trigger": "$WS_POPUPWINDOW", "contents": "$WS_POPUPWINDOW" }, 19 | { "trigger": "$WS_SIZEBOX", "contents": "$WS_SIZEBOX" }, 20 | { "trigger": "$WS_SYSMENU", "contents": "$WS_SYSMENU" }, 21 | { "trigger": "$WS_THICKFRAME", "contents": "$WS_THICKFRAME" }, 22 | { "trigger": "$WS_VSCROLL", "contents": "$WS_VSCROLL" }, 23 | { "trigger": "$WS_VISIBLE", "contents": "$WS_VISIBLE" }, 24 | { "trigger": "$WS_CHILD", "contents": "$WS_CHILD" }, 25 | { "trigger": "$WS_GROUP", "contents": "$WS_GROUP" }, 26 | { "trigger": "$WS_TABSTOP", "contents": "$WS_TABSTOP" }, 27 | { "trigger": "$DS_MODALFRAME", "contents": "$DS_MODALFRAME" }, 28 | { "trigger": "$DS_SETFOREGROUND", "contents": "$DS_SETFOREGROUND" }, 29 | { "trigger": "$DS_CONTEXTHELP", "contents": "$DS_CONTEXTHELP" }, 30 | { "trigger": "$WS_EX_ACCEPTFILES", "contents": "$WS_EX_ACCEPTFILES" }, 31 | { "trigger": "$WS_EX_APPWINDOW", "contents": "$WS_EX_APPWINDOW" }, 32 | { "trigger": "$WS_EX_COMPOSITED", "contents": "$WS_EX_COMPOSITED" }, 33 | { "trigger": "$WS_EX_CLIENTEDGE", "contents": "$WS_EX_CLIENTEDGE" }, 34 | { "trigger": "$WS_EX_CONTEXTHELP", "contents": "$WS_EX_CONTEXTHELP" }, 35 | { "trigger": "$WS_EX_DLGMODALFRAME", "contents": "$WS_EX_DLGMODALFRAME" }, 36 | { "trigger": "$WS_EX_LAYOUTRTL", "contents": "$WS_EX_LAYOUTRTL" }, 37 | { "trigger": "$WS_EX_MDICHILD", "contents": "$WS_EX_MDICHILD" }, 38 | { "trigger": "$WS_EX_OVERLAPPEDWINDOW", "contents": "$WS_EX_OVERLAPPEDWINDOW" }, 39 | { "trigger": "$WS_EX_STATICEDGE", "contents": "$WS_EX_STATICEDGE" }, 40 | { "trigger": "$WS_EX_TOPMOST", "contents": "$WS_EX_TOPMOST" }, 41 | { "trigger": "$WS_EX_TRANSPARENT", "contents": "$WS_EX_TRANSPARENT" }, 42 | { "trigger": "$WS_EX_TOOLWINDOW", "contents": "$WS_EX_TOOLWINDOW" }, 43 | { "trigger": "$WS_EX_WINDOWEDGE", "contents": "$WS_EX_WINDOWEDGE" }, 44 | { "trigger": "$WS_EX_LAYERED", "contents": "$WS_EX_LAYERED" }, 45 | { "trigger": "$GUI_WS_EX_PARENTDRAG", "contents": "$GUI_WS_EX_PARENTDRAG" }, 46 | { "trigger": "$BS_3STATE", "contents": "$BS_3STATE" }, 47 | { "trigger": "$BS_AUTO3STATE", "contents": "$BS_AUTO3STATE" }, 48 | { "trigger": "$BS_AUTOCHECKBOX", "contents": "$BS_AUTOCHECKBOX" }, 49 | { "trigger": "$BS_CHECKBOX", "contents": "$BS_CHECKBOX" }, 50 | { "trigger": "$BS_LEFT", "contents": "$BS_LEFT" }, 51 | { "trigger": "$BS_PUSHLIKE", "contents": "$BS_PUSHLIKE" }, 52 | { "trigger": "$BS_RIGHT", "contents": "$BS_RIGHT" }, 53 | { "trigger": "$BS_RIGHTBUTTON", "contents": "$BS_RIGHTBUTTON" }, 54 | { "trigger": "$BS_GROUPBOX", "contents": "$BS_GROUPBOX" }, 55 | { "trigger": "$BS_AUTORADIOBUTTON", "contents": "$BS_AUTORADIOBUTTON" }, 56 | { "trigger": "$BS_BOTTOM", "contents": "$BS_BOTTOM" }, 57 | { "trigger": "$BS_CENTER", "contents": "$BS_CENTER" }, 58 | { "trigger": "$BS_DEFPUSHBUTTON", "contents": "$BS_DEFPUSHBUTTON" }, 59 | { "trigger": "$BS_MULTILINE", "contents": "$BS_MULTILINE" }, 60 | { "trigger": "$BS_TOP", "contents": "$BS_TOP" }, 61 | { "trigger": "$BS_VCENTER", "contents": "$BS_VCENTER" }, 62 | { "trigger": "$BS_ICON", "contents": "$BS_ICON" }, 63 | { "trigger": "$BS_BITMAP", "contents": "$BS_BITMAP" }, 64 | { "trigger": "$BS_FLAT", "contents": "$BS_FLAT" }, 65 | { "trigger": "$BS_NOTIFY", "contents": "$BS_NOTIFY" }, 66 | { "trigger": "$CBS_AUTOHSCROLL", "contents": "$CBS_AUTOHSCROLL" }, 67 | { "trigger": "$CBS_DISABLENOSCROLL", "contents": "$CBS_DISABLENOSCROLL" }, 68 | { "trigger": "$CBS_DROPDOWN", "contents": "$CBS_DROPDOWN" }, 69 | { "trigger": "$CBS_DROPDOWNLIST", "contents": "$CBS_DROPDOWNLIST" }, 70 | { "trigger": "$CBS_LOWERCASE", "contents": "$CBS_LOWERCASE" }, 71 | { "trigger": "$CBS_NOINTEGRALHEIGHT", "contents": "$CBS_NOINTEGRALHEIGHT" }, 72 | { "trigger": "$CBS_OEMCONVERT", "contents": "$CBS_OEMCONVERT" }, 73 | { "trigger": "$CBS_SIMPLE", "contents": "$CBS_SIMPLE" }, 74 | { "trigger": "$CBS_SORT", "contents": "$CBS_SORT" }, 75 | { "trigger": "$CBS_UPPERCASE", "contents": "$CBS_UPPERCASE" }, 76 | { "trigger": "$LBS_DISABLENOSCROLL", "contents": "$LBS_DISABLENOSCROLL" }, 77 | { "trigger": "$LBS_NOINTEGRALHEIGHT", "contents": "$LBS_NOINTEGRALHEIGHT" }, 78 | { "trigger": "$LBS_NOSEL", "contents": "$LBS_NOSEL" }, 79 | { "trigger": "$LBS_NOTIFY", "contents": "$LBS_NOTIFY" }, 80 | { "trigger": "$LBS_SORT", "contents": "$LBS_SORT" }, 81 | { "trigger": "$LBS_STANDARD", "contents": "$LBS_STANDARD" }, 82 | { "trigger": "$LBS_USETABSTOPS", "contents": "$LBS_USETABSTOPS" }, 83 | { "trigger": "$ES_AUTOHSCROLL", "contents": "$ES_AUTOHSCROLL" }, 84 | { "trigger": "$ES_AUTOVSCROLL", "contents": "$ES_AUTOVSCROLL" }, 85 | { "trigger": "$ES_CENTER", "contents": "$ES_CENTER" }, 86 | { "trigger": "$ES_LOWERCASE", "contents": "$ES_LOWERCASE" }, 87 | { "trigger": "$ES_NOHIDESEL", "contents": "$ES_NOHIDESEL" }, 88 | { "trigger": "$ES_NUMBER", "contents": "$ES_NUMBER" }, 89 | { "trigger": "$ES_OEMCONVERT", "contents": "$ES_OEMCONVERT" }, 90 | { "trigger": "$ES_MULTILINE", "contents": "$ES_MULTILINE" }, 91 | { "trigger": "$ES_PASSWORD", "contents": "$ES_PASSWORD" }, 92 | { "trigger": "$ES_READONLY", "contents": "$ES_READONLY" }, 93 | { "trigger": "$ES_RIGHT", "contents": "$ES_RIGHT" }, 94 | { "trigger": "$ES_UPPERCASE", "contents": "$ES_UPPERCASE" }, 95 | { "trigger": "$ES_WANTRETURN", "contents": "$ES_WANTRETURN" }, 96 | { "trigger": "$PBS_MARQUEE", "contents": "$PBS_MARQUEE" }, 97 | { "trigger": "$PBS_SMOOTH", "contents": "$PBS_SMOOTH" }, 98 | { "trigger": "$PBS_VERTICAL", "contents": "$PBS_VERTICAL" }, 99 | { "trigger": "$UDS_ALIGNLEFT", "contents": "$UDS_ALIGNLEFT" }, 100 | { "trigger": "$UDS_ALIGNRIGHT", "contents": "$UDS_ALIGNRIGHT" }, 101 | { "trigger": "$UDS_ARROWKEYS", "contents": "$UDS_ARROWKEYS" }, 102 | { "trigger": "$UDS_HORZ", "contents": "$UDS_HORZ" }, 103 | { "trigger": "$UDS_NOTHOUSANDS", "contents": "$UDS_NOTHOUSANDS" }, 104 | { "trigger": "$UDS_WRAP", "contents": "$UDS_WRAP" }, 105 | { "trigger": "$SS_BLACKFRAME", "contents": "$SS_BLACKFRAME" }, 106 | { "trigger": "$SS_BLACKRECT", "contents": "$SS_BLACKRECT" }, 107 | { "trigger": "$SS_CENTER", "contents": "$SS_CENTER" }, 108 | { "trigger": "$SS_CENTERIMAGE", "contents": "$SS_CENTERIMAGE" }, 109 | { "trigger": "$SS_ETCHEDFRAME", "contents": "$SS_ETCHEDFRAME" }, 110 | { "trigger": "$SS_ETCHEDHORZ", "contents": "$SS_ETCHEDHORZ" }, 111 | { "trigger": "$SS_ETCHEDVERT", "contents": "$SS_ETCHEDVERT" }, 112 | { "trigger": "$SS_GRAYFRAME", "contents": "$SS_GRAYFRAME" }, 113 | { "trigger": "$SS_GRAYRECT", "contents": "$SS_GRAYRECT" }, 114 | { "trigger": "$SS_LEFT", "contents": "$SS_LEFT" }, 115 | { "trigger": "$SS_LEFTNOWORDWRAP", "contents": "$SS_LEFTNOWORDWRAP" }, 116 | { "trigger": "$SS_NOPREFIX", "contents": "$SS_NOPREFIX" }, 117 | { "trigger": "$SS_NOTIFY", "contents": "$SS_NOTIFY" }, 118 | { "trigger": "$SS_RIGHT", "contents": "$SS_RIGHT" }, 119 | { "trigger": "$SS_RIGHTJUST", "contents": "$SS_RIGHTJUST" }, 120 | { "trigger": "$SS_SIMPLE", "contents": "$SS_SIMPLE" }, 121 | { "trigger": "$SS_SUNKEN", "contents": "$SS_SUNKEN" }, 122 | { "trigger": "$SS_WHITEFRAME", "contents": "$SS_WHITEFRAME" }, 123 | { "trigger": "$SS_WHITERECT", "contents": "$SS_WHITERECT" }, 124 | { "trigger": "$TCS_SCROLLOPPOSITE", "contents": "$TCS_SCROLLOPPOSITE" }, 125 | { "trigger": "$TCS_BOTTOM", "contents": "$TCS_BOTTOM" }, 126 | { "trigger": "$TCS_RIGHT", "contents": "$TCS_RIGHT" }, 127 | { "trigger": "$TCS_MULTISELECT", "contents": "$TCS_MULTISELECT" }, 128 | { "trigger": "$TCS_FLATBUTTONS", "contents": "$TCS_FLATBUTTONS" }, 129 | { "trigger": "$TCS_FORCEICONLEFT", "contents": "$TCS_FORCEICONLEFT" }, 130 | { "trigger": "$TCS_FORCELABELLEFT", "contents": "$TCS_FORCELABELLEFT" }, 131 | { "trigger": "$TCS_HOTTRACK", "contents": "$TCS_HOTTRACK" }, 132 | { "trigger": "$TCS_VERTICAL", "contents": "$TCS_VERTICAL" }, 133 | { "trigger": "$TCS_TABS", "contents": "$TCS_TABS" }, 134 | { "trigger": "$TCS_BUTTONS", "contents": "$TCS_BUTTONS" }, 135 | { "trigger": "$TCS_SINGLELINE", "contents": "$TCS_SINGLELINE" }, 136 | { "trigger": "$TCS_MULTILINE", "contents": "$TCS_MULTILINE" }, 137 | { "trigger": "$TCS_RIGHTJUSTIFY", "contents": "$TCS_RIGHTJUSTIFY" }, 138 | { "trigger": "$TCS_FIXEDWIDTH", "contents": "$TCS_FIXEDWIDTH" }, 139 | { "trigger": "$TCS_RAGGEDRIGHT", "contents": "$TCS_RAGGEDRIGHT" }, 140 | { "trigger": "$TCS_FOCUSONBUTTONDOWN", "contents": "$TCS_FOCUSONBUTTONDOWN" }, 141 | { "trigger": "$TCS_OWNERDRAWFIXED", "contents": "$TCS_OWNERDRAWFIXED" }, 142 | { "trigger": "$TCS_TOOLTIPS", "contents": "$TCS_TOOLTIPS" }, 143 | { "trigger": "$TCS_FOCUSNEVER", "contents": "$TCS_FOCUSNEVER" }, 144 | { "trigger": "$ACS_AUTOPLAY", "contents": "$ACS_AUTOPLAY" }, 145 | { "trigger": "$ACS_CENTER", "contents": "$ACS_CENTER" }, 146 | { "trigger": "$ACS_TRANSPARENT", "contents": "$ACS_TRANSPARENT" }, 147 | { "trigger": "$ACS_NONTRANSPARENT", "contents": "$ACS_NONTRANSPARENT" }, 148 | { "trigger": "$DTS_UPDOWN", "contents": "$DTS_UPDOWN" }, 149 | { "trigger": "$DTS_SHOWNONE", "contents": "$DTS_SHOWNONE" }, 150 | { "trigger": "$DTS_LONGDATEFORMAT", "contents": "$DTS_LONGDATEFORMAT" }, 151 | { "trigger": "$DTS_TIMEFORMAT", "contents": "$DTS_TIMEFORMAT" }, 152 | { "trigger": "$DTS_RIGHTALIGN", "contents": "$DTS_RIGHTALIGN" }, 153 | { "trigger": "$DTS_SHORTDATEFORMAT", "contents": "$DTS_SHORTDATEFORMAT" }, 154 | { "trigger": "$MCS_NOTODAY", "contents": "$MCS_NOTODAY" }, 155 | { "trigger": "$MCS_NOTODAYCIRCLE", "contents": "$MCS_NOTODAYCIRCLE" }, 156 | { "trigger": "$MCS_WEEKNUMBERS", "contents": "$MCS_WEEKNUMBERS" }, 157 | { "trigger": "$TVS_HASBUTTONS", "contents": "$TVS_HASBUTTONS" }, 158 | { "trigger": "$TVS_HASLINES", "contents": "$TVS_HASLINES" }, 159 | { "trigger": "$TVS_LINESATROOT", "contents": "$TVS_LINESATROOT" }, 160 | { "trigger": "$TVS_DISABLEDRAGDROP", "contents": "$TVS_DISABLEDRAGDROP" }, 161 | { "trigger": "$TVS_SHOWSELALWAYS", "contents": "$TVS_SHOWSELALWAYS" }, 162 | { "trigger": "$TVS_RTLREADING", "contents": "$TVS_RTLREADING" }, 163 | { "trigger": "$TVS_NOTOOLTIPS", "contents": "$TVS_NOTOOLTIPS" }, 164 | { "trigger": "$TVS_CHECKBOXES", "contents": "$TVS_CHECKBOXES" }, 165 | { "trigger": "$TVS_TRACKSELECT", "contents": "$TVS_TRACKSELECT" }, 166 | { "trigger": "$TVS_SINGLEEXPAND", "contents": "$TVS_SINGLEEXPAND" }, 167 | { "trigger": "$TVS_FULLROWSELECT", "contents": "$TVS_FULLROWSELECT" }, 168 | { "trigger": "$TVS_NOSCROLL", "contents": "$TVS_NOSCROLL" }, 169 | { "trigger": "$TVS_NONEVENHEIGHT", "contents": "$TVS_NONEVENHEIGHT" }, 170 | { "trigger": "$TBS_AUTOTICKS", "contents": "$TBS_AUTOTICKS" }, 171 | { "trigger": "$TBS_BOTH", "contents": "$TBS_BOTH" }, 172 | { "trigger": "$TBS_BOTTOM", "contents": "$TBS_BOTTOM" }, 173 | { "trigger": "$TBS_HORZ", "contents": "$TBS_HORZ" }, 174 | { "trigger": "$TBS_VERT", "contents": "$TBS_VERT" }, 175 | { "trigger": "$TBS_NOTHUMB", "contents": "$TBS_NOTHUMB" }, 176 | { "trigger": "$TBS_NOTICKS", "contents": "$TBS_NOTICKS" }, 177 | { "trigger": "$TBS_LEFT", "contents": "$TBS_LEFT" }, 178 | { "trigger": "$TBS_RIGHT", "contents": "$TBS_RIGHT" }, 179 | { "trigger": "$TBS_TOP", "contents": "$TBS_TOP" }, 180 | { "trigger": "$LVS_ICON", "contents": "$LVS_ICON" }, 181 | { "trigger": "$LVS_REPORT", "contents": "$LVS_REPORT" }, 182 | { "trigger": "$LVS_SMALLICON", "contents": "$LVS_SMALLICON" }, 183 | { "trigger": "$LVS_LIST", "contents": "$LVS_LIST" }, 184 | { "trigger": "$LVS_EDITLABELS", "contents": "$LVS_EDITLABELS" }, 185 | { "trigger": "$LVS_NOCOLUMNHEADER", "contents": "$LVS_NOCOLUMNHEADER" }, 186 | { "trigger": "$LVS_NOSORTHEADER", "contents": "$LVS_NOSORTHEADER" }, 187 | { "trigger": "$LVS_SINGLESEL", "contents": "$LVS_SINGLESEL" }, 188 | { "trigger": "$LVS_SHOWSELALWAYS", "contents": "$LVS_SHOWSELALWAYS" }, 189 | { "trigger": "$LVS_SORTASCENDING", "contents": "$LVS_SORTASCENDING" }, 190 | { "trigger": "$LVS_SORTDESCENDING", "contents": "$LVS_SORTDESCENDING" }, 191 | { "trigger": "$LVS_NOLABELWRAP", "contents": "$LVS_NOLABELWRAP" }, 192 | { "trigger": "$LVS_EX_FULLROWSELECT", "contents": "$LVS_EX_FULLROWSELECT" }, 193 | { "trigger": "$LVS_EX_GRIDLINES", "contents": "$LVS_EX_GRIDLINES" }, 194 | { "trigger": "$LVS_EX_HEADERDRAGDROP", "contents": "$LVS_EX_HEADERDRAGDROP" }, 195 | { "trigger": "$LVS_EX_TRACKSELECT", "contents": "$LVS_EX_TRACKSELECT" }, 196 | { "trigger": "$LVS_EX_CHECKBOXES", "contents": "$LVS_EX_CHECKBOXES" }, 197 | { "trigger": "$LVS_EX_BORDERSELECT", "contents": "$LVS_EX_BORDERSELECT" }, 198 | { "trigger": "$LVS_EX_DOUBLEBUFFER", "contents": "$LVS_EX_DOUBLEBUFFER" }, 199 | { "trigger": "$LVS_EX_FLATSB", "contents": "$LVS_EX_FLATSB" }, 200 | { "trigger": "$LVS_EX_MULTIWORKAREAS", "contents": "$LVS_EX_MULTIWORKAREAS" }, 201 | { "trigger": "$LVS_EX_SNAPTOGRID", "contents": "$LVS_EX_SNAPTOGRID" }, 202 | { "trigger": "$LVS_EX_SUBITEMIMAGES", "contents": "$LVS_EX_SUBITEMIMAGES" }, 203 | { "trigger": "$LVS_EX_INFOTIP", "contents": "$LVS_EX_INFOTIP" } 204 | ] 205 | } 206 | -------------------------------------------------------------------------------- /Completions/Includes.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "#include ", "contents": "#include " }, 5 | { "trigger": "#include ", "contents": "#include " }, 6 | { "trigger": "#include ", "contents": "#include " }, 7 | { "trigger": "#include ", "contents": "#include " }, 8 | { "trigger": "#include ", "contents": "#include " }, 9 | { "trigger": "#include ", "contents": "#include " }, 10 | { "trigger": "#include ", "contents": "#include " }, 11 | { "trigger": "#include ", "contents": "#include " }, 12 | { "trigger": "#include ", "contents": "#include " }, 13 | { "trigger": "#include ", "contents": "#include " }, 14 | { "trigger": "#include ", "contents": "#include " }, 15 | { "trigger": "#include-once", "contents": "#include-once" } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /Completions/Keywords.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "Dim", "contents": "Dim" }, 5 | { "trigger": "Local", "contents": "Local" }, 6 | { "trigger": "Global", "contents": "Global" }, 7 | { "trigger": "Const", "contents": "Const" }, 8 | { "trigger": "And", "contents": "And" }, 9 | { "trigger": "Or", "contents": "Or" }, 10 | { "trigger": "Not", "contents": "Not" }, 11 | { "trigger": "ByRef", "contents": "ByRef" }, 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /Completions/Macros.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "@AppDataCommonDir", "contents": "@AppDataCommonDir" }, 5 | { "trigger": "@AppDataDir", "contents": "@AppDataDir" }, 6 | { "trigger": "@AutoItExe", "contents": "@AutoItExe" }, 7 | { "trigger": "@AutoItPID", "contents": "@AutoItPID" }, 8 | { "trigger": "@AutoItVersion", "contents": "@AutoItVersion" }, 9 | { "trigger": "@AutoItX64", "contents": "@AutoItX64" }, 10 | { "trigger": "@COM_EventObj", "contents": "@COM_EventObj" }, 11 | { "trigger": "@CommonFilesDir", "contents": "@CommonFilesDir" }, 12 | { "trigger": "@Compiled", "contents": "@Compiled" }, 13 | { "trigger": "@ComputerName", "contents": "@ComputerName" }, 14 | { "trigger": "@ComSpec", "contents": "@ComSpec" }, 15 | { "trigger": "@CPUArch", "contents": "@CPUArch" }, 16 | { "trigger": "@CR", "contents": "@CR" }, 17 | { "trigger": "@CRLF", "contents": "@CRLF" }, 18 | { "trigger": "@DesktopCommonDir", "contents": "@DesktopCommonDir" }, 19 | { "trigger": "@DesktopDepth", "contents": "@DesktopDepth" }, 20 | { "trigger": "@DesktopDir", "contents": "@DesktopDir" }, 21 | { "trigger": "@DesktopHeight", "contents": "@DesktopHeight" }, 22 | { "trigger": "@DesktopRefresh", "contents": "@DesktopRefresh" }, 23 | { "trigger": "@DesktopWidth", "contents": "@DesktopWidth" }, 24 | { "trigger": "@DocumentsCommonDir", "contents": "@DocumentsCommonDir" }, 25 | { "trigger": "@error", "contents": "@error" }, 26 | { "trigger": "@exitCode", "contents": "@exitCode" }, 27 | { "trigger": "@exitMethod", "contents": "@exitMethod" }, 28 | { "trigger": "@extended", "contents": "@extended" }, 29 | { "trigger": "@FavoritesCommonDir", "contents": "@FavoritesCommonDir" }, 30 | { "trigger": "@FavoritesDir", "contents": "@FavoritesDir" }, 31 | { "trigger": "@GUI_CtrlHandle", "contents": "@GUI_CtrlHandle" }, 32 | { "trigger": "@GUI_CtrlId", "contents": "@GUI_CtrlId" }, 33 | { "trigger": "@GUI_DragFile", "contents": "@GUI_DragFile" }, 34 | { "trigger": "@GUI_DragId", "contents": "@GUI_DragId" }, 35 | { "trigger": "@GUI_DropId", "contents": "@GUI_DropId" }, 36 | { "trigger": "@GUI_WinHandle", "contents": "@GUI_WinHandle" }, 37 | { "trigger": "@HomeDrive", "contents": "@HomeDrive" }, 38 | { "trigger": "@HomePath", "contents": "@HomePath" }, 39 | { "trigger": "@HomeShare", "contents": "@HomeShare" }, 40 | { "trigger": "@HotKeyPressed", "contents": "@HotKeyPressed" }, 41 | { "trigger": "@HOUR", "contents": "@HOUR Hours" }, 42 | { "trigger": "@IPAddress1", "contents": "@IPAddress1" }, 43 | { "trigger": "@IPAddress2", "contents": "@IPAddress2" }, 44 | { "trigger": "@IPAddress3", "contents": "@IPAddress3" }, 45 | { "trigger": "@IPAddress4", "contents": "@IPAddress4" }, 46 | { "trigger": "@KBLayout", "contents": "@KBLayout" }, 47 | { "trigger": "@LF", "contents": "@LF" }, 48 | { "trigger": "@LocalAppDataDir", "contents": "@LocalAppDataDir" }, 49 | { "trigger": "@LogonDNSDomain", "contents": "@LogonDNSDomain" }, 50 | { "trigger": "@LogonDomain", "contents": "@LogonDomain" }, 51 | { "trigger": "@LogonServer", "contents": "@LogonServer" }, 52 | { "trigger": "@MDAY", "contents": "@MDAY" }, 53 | { "trigger": "@MIN", "contents": "@MIN" }, 54 | { "trigger": "@MON", "contents": "@MON" }, 55 | { "trigger": "@MSEC", "contents": "@MSEC" }, 56 | { "trigger": "@MUILang", "contents": "@MUILang" }, 57 | { "trigger": "@MyDocumentsDir", "contents": "@MyDocumentsDir" }, 58 | { "trigger": "@NumParams", "contents": "@NumParams" }, 59 | { "trigger": "@OSArch", "contents": "@OSArch" }, 60 | { "trigger": "@OSBuild", "contents": "@OSBuild" }, 61 | { "trigger": "@OSLang", "contents": "@OSLang" }, 62 | { "trigger": "@OSServicePack", "contents": "@OSServicePack" }, 63 | { "trigger": "@OSType", "contents": "@OSType" }, 64 | { "trigger": "@OSVersion", "contents": "@OSVersion" }, 65 | { "trigger": "@ProgramFilesDir", "contents": "@ProgramFilesDir" }, 66 | { "trigger": "@ProgramsCommonDir", "contents": "@ProgramsCommonDir" }, 67 | { "trigger": "@ProgramsDir", "contents": "@ProgramsDir" }, 68 | { "trigger": "@ScriptDir", "contents": "@ScriptDir" }, 69 | { "trigger": "@ScriptFullPath", "contents": "@ScriptFullPath" }, 70 | { "trigger": "@ScriptLineNumber", "contents": "@ScriptLineNumber" }, 71 | { "trigger": "@ScriptName", "contents": "@ScriptName" }, 72 | { "trigger": "@SEC", "contents": "@SEC" }, 73 | { "trigger": "@StartMenuCommonDir", "contents": "@StartMenuCommonDir" }, 74 | { "trigger": "@StartMenuDir", "contents": "@StartMenuDir" }, 75 | { "trigger": "@StartupCommonDir", "contents": "@StartupCommonDir" }, 76 | { "trigger": "@StartupDir", "contents": "@StartupDir" }, 77 | { "trigger": "@SW_DISABLE", "contents": "@SW_DISABLE" }, 78 | { "trigger": "@SW_ENABLE", "contents": "@SW_ENABLE" }, 79 | { "trigger": "@SW_HIDE", "contents": "@SW_HIDE" }, 80 | { "trigger": "@SW_LOCK", "contents": "@SW_LOCK" }, 81 | { "trigger": "@SW_MAXIMIZE", "contents": "@SW_MAXIMIZE" }, 82 | { "trigger": "@SW_MINIMIZE", "contents": "@SW_MINIMIZE" }, 83 | { "trigger": "@SW_RESTORE", "contents": "@SW_RESTORE" }, 84 | { "trigger": "@SW_SHOW", "contents": "@SW_SHOW" }, 85 | { "trigger": "@SW_SHOWDEFAULT", "contents": "@SW_SHOWDEFAULT" }, 86 | { "trigger": "@SW_SHOWMINIMIZED", "contents": "@SW_SHOWMINIMIZED" }, 87 | { "trigger": "@SW_SHOWMINNOACTIVE", "contents": "@SW_SHOWMINNOACTIVE" }, 88 | { "trigger": "@SW_SHOWNA", "contents": "@SW_SHOWNA" }, 89 | { "trigger": "@SW_SHOWNOACTIVATE", "contents": "@SW_SHOWNOACTIVATE" }, 90 | { "trigger": "@SW_SHOWNORMAL", "contents": "@SW_SHOWNORMAL" }, 91 | { "trigger": "@SW_UNLOCK", "contents": "@SW_UNLOCK" }, 92 | { "trigger": "@SystemDir", "contents": "@SystemDir" }, 93 | { "trigger": "@TAB", "contents": "@TAB" }, 94 | { "trigger": "@TempDir", "contents": "@TempDir" }, 95 | { "trigger": "@TRAY_ID", "contents": "@TRAY_ID" }, 96 | { "trigger": "@TrayIconFlashing", "contents": "@TrayIconFlashing" }, 97 | { "trigger": "@TrayIconVisible", "contents": "@TrayIconVisible" }, 98 | { "trigger": "@UserName", "contents": "@UserName" }, 99 | { "trigger": "@UserProfileDir", "contents": "@UserProfileDir" }, 100 | { "trigger": "@WDAY", "contents": "@WDAY" }, 101 | { "trigger": "@WindowsDir", "contents": "@WindowsDir" }, 102 | { "trigger": "@WorkingDir", "contents": "@WorkingDir" }, 103 | { "trigger": "@YDAY", "contents": "@YDAY" }, 104 | { "trigger": "@YEAR", "contents": "@YEAR" }, 105 | ] 106 | } -------------------------------------------------------------------------------- /Completions/MsgConstantName.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "IDOK Flag MsgBox Constant Name", "contents": "\\$IDOK" }, 5 | { "trigger": "IDCANCEL Flag MsgBox Constant Name", "contents": "\\$IDCANCEL" }, 6 | { "trigger": "IDABORT Flag MsgBox Constant Name", "contents": "\\$IDABORT " }, 7 | { "trigger": "IDRETRY Flag MsgBox Constant Name", "contents": "\\$IDRETRY" }, 8 | { "trigger": "IDIGNORE Flag MsgBox Constant Name", "contents": "\\$IDIGNORE" }, 9 | { "trigger": "IDYES Flag MsgBox Constant Name", "contents": "\\$IDYES" }, 10 | { "trigger": "IDNO Flag MsgBox Constant Name", "contents": "\\$IDNO" }, 11 | { "trigger": "IDTRYAGAIN Flag MsgBox Constant Name", "contents": "\\$IDTRYAGAIN" }, 12 | { "trigger": "IDCONTINUE Flag MsgBox Constant Name", "contents": "\\$IDCONTINUE" }, 13 | { "trigger": "MB_OK Flag MsgBox Constant Name", "contents": "\\$MB_OK" }, 14 | { "trigger": "MB_OKCANCEL Flag MsgBox Constant Name", "contents": "\\$MB_OKCANCEL" }, 15 | { "trigger": "MB_ABORTRETRYIGNORE Flag MsgBox Constant Name", "contents": "\\$MB_ABORTRETRYIGNORE" }, 16 | { "trigger": "MB_YESNOCANCEL Flag MsgBox Constant Name", "contents": "\\$MB_YESNOCANCEL" }, 17 | { "trigger": "MB_YESNO Flag MsgBox Constant Name", "contents": "\\$MB_YESNO" }, 18 | { "trigger": "MB_RETRYCANCEL Flag MsgBox Constant Name", "contents": "\\$MB_RETRYCANCEL" }, 19 | { "trigger": "MB_CANCELTRYCONTINUE Flag MsgBox Constant Name", "contents": "\\$MB_CANCELTRYCONTINUE" }, 20 | { "trigger": "MB_HELP Flag MsgBox Constant Name", "contents": "\\$MB_HELP" }, 21 | { "trigger": "MB_ICONERROR Flag MsgBox Constant Name", "contents": "\\$MB_ICONERROR" }, 22 | { "trigger": "MB_ICONQUESTION Flag MsgBox Constant Name", "contents": "\\$MB_ICONQUESTION" }, 23 | { "trigger": "MB_ICONWARNING Flag MsgBox Constant Name", "contents": "\\$MB_ICONWARNING" }, 24 | { "trigger": "MB_ICONINFORMATION Flag MsgBox Constant Name", "contents": "\\$MB_ICONINFORMATION" }, 25 | { "trigger": "MB_DEFBUTTON1 Flag MsgBox Constant Name", "contents": "\\$MB_DEFBUTTON1" }, 26 | { "trigger": "MB_DEFBUTTON2 Flag MsgBox Constant Name", "contents": "\\$MB_DEFBUTTON2" }, 27 | { "trigger": "MB_DEFBUTTON3 Flag MsgBox Constant Name", "contents": "\\$MB_DEFBUTTON3" }, 28 | { "trigger": "MB_DEFBUTTON4 Flag MsgBox Constant Name", "contents": "\\$MB_DEFBUTTON4" }, 29 | { "trigger": "MB_APPLMODAL Flag MsgBox Constant Name", "contents": "\\$MB_APPLMODAL" }, 30 | { "trigger": "MB_SYSTEMMODAL Flag MsgBox Constant Name", "contents": "\\$MB_SYSTEMMODAL" }, 31 | { "trigger": "MB_TASKMODAL Flag MsgBox Constant Name", "contents": "\\$MB_TASKMODAL" }, 32 | { "trigger": "MB_DEFAULT_DESKTOP_ONLY Flag MsgBox Constant Name", "contents": "\\$MB_DEFAULT_DESKTOP_ONLY" }, 33 | { "trigger": "MB_RIGHT Flag MsgBox Constant Name", "contents": "\\$MB_RIGHT" }, 34 | { "trigger": "MB_RTLREADING Flag MsgBox Constant Name", "contents": "\\$MB_RTLREADING" }, 35 | { "trigger": "MB_SETFOREGROUND Flag MsgBox Constant Name", "contents": "\\$MB_SETFOREGROUND" }, 36 | { "trigger": "MB_TOPMOST Flag MsgBox Constant Name", "contents": "\\$MB_TOPMOST" }, 37 | { "trigger": "MB_SERVICE_NOTIFICATION Flag MsgBox Constant Name", "contents": "\\$MB_SERVICE_NOTIFICATION " }, 38 | ] 39 | } -------------------------------------------------------------------------------- /Completions/SendKeyList.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "SPACE Send Key List", "contents": "{SPACE}" }, 5 | { "trigger": "ENTER Send Key List", "contents": "{ENTER}" }, 6 | { "trigger": "ALT Send Key List", "contents": "{ALT}" }, 7 | { "trigger": "BACKSPACE Send Key List", "contents": "{BS}" }, 8 | { "trigger": "DELETE Send Key List", "contents": "{DEL}" }, 9 | { "trigger": "UP Send Key List", "contents": "{UP}" }, 10 | { "trigger": "DOWN Send Key List", "contents": "{DOWN}" }, 11 | { "trigger": "LEFT Send Key List", "contents": "{LEFT}" }, 12 | { "trigger": "RIGHT Send Key List", "contents": "{RIGHT}" }, 13 | { "trigger": "HOME Send Key List", "contents": "{HOME}" }, 14 | { "trigger": "END Send Key List", "contents": "{END}" }, 15 | { "trigger": "ESCAPE Send Key List", "contents": "{ESC}" }, 16 | { "trigger": "INSERT Send Key List", "contents": "{INS}" }, 17 | { "trigger": "PAGE UP Send Key List", "contents": "{PGUP}" }, 18 | { "trigger": "PAGE DOWN Send Key List", "contents": "{PGDN}" }, 19 | { "trigger": "F1 Send Key List", "contents": "{F1}" }, 20 | { "trigger": "F2 Send Key List", "contents": "{F2}" }, 21 | { "trigger": "F3 Send Key List", "contents": "{F3}" }, 22 | { "trigger": "F4 Send Key List", "contents": "{F4}" }, 23 | { "trigger": "F5 Send Key List", "contents": "{F5}" }, 24 | { "trigger": "F6 Send Key List", "contents": "{F6}" }, 25 | { "trigger": "F7 Send Key List", "contents": "{F7}" }, 26 | { "trigger": "F8 Send Key List", "contents": "{F8}" }, 27 | { "trigger": "F9 Send Key List", "contents": "{F9}" }, 28 | { "trigger": "F10 Send Key List", "contents": "{F10}" }, 29 | { "trigger": "F11 Send Key List", "contents": "{F11}" }, 30 | { "trigger": "F12 Send Key List", "contents": "{F12}" }, 31 | { "trigger": "TAB Send Key List", "contents": "{TAB}" }, 32 | { "trigger": "LWIM Send Key List", "contents": "{LWIM}" }, 33 | { "trigger": "RWIN Send Key List", "contents": "{RWIN}" }, 34 | { "trigger": "NUMLOCK Send Key List", "contents": "{NUMLOCK}" }, 35 | { "trigger": "CAPSLOCK Send Key List", "contents": "{CAPSLOCK}" }, 36 | { "trigger": "SCROLLLOCK Send Key List", "contents": "{SCROLLLOCK}" }, 37 | { "trigger": "BREAK Send Key List", "contents": "{BREAK}" }, 38 | { "trigger": "PAUSE Send Key List", "contents": "{PAUSE}" }, 39 | { "trigger": "NUMPAD0 Send Key List", "contents": "{NUMPAD0}" }, 40 | { "trigger": "NUMPAD1 Send Key List", "contents": "{NUMPAD1}" }, 41 | { "trigger": "NUMPAD2 Send Key List", "contents": "{NUMPAD2}" }, 42 | { "trigger": "NUMPAD3 Send Key List", "contents": "{NUMPAD3}" }, 43 | { "trigger": "NUMPAD4 Send Key List", "contents": "{NUMPAD4}" }, 44 | { "trigger": "NUMPAD5 Send Key List", "contents": "{NUMPAD5}" }, 45 | { "trigger": "NUMPAD6 Send Key List", "contents": "{NUMPAD6}" }, 46 | { "trigger": "NUMPAD7 Send Key List", "contents": "{NUMPAD7}" }, 47 | { "trigger": "NUMPAD8 Send Key List", "contents": "{NUMPAD8}" }, 48 | { "trigger": "NUMPAD9 Send Key List", "contents": "{NUMPAD9}" }, 49 | { "trigger": "NUMPADMULT Send Key List", "contents": "{NUMPADMULT}" }, 50 | { "trigger": "NUMPADADD Send Key List", "contents": "{NUMPADADD}" }, 51 | { "trigger": "NUMPADSUB Send Key List", "contents": "{NUMPADSUB}" }, 52 | { "trigger": "NUMPADDIV Send Key List", "contents": "{NUMPADDIV}" }, 53 | { "trigger": "NUMPADDOT Send Key List", "contents": "{NUMPADDOT}" }, 54 | { "trigger": "NUMPADENTER Send Key List", "contents": "{NUMPADENTER}" }, 55 | { "trigger": "APPSKEY Send Key List", "contents": "{APPSKEY}" }, 56 | { "trigger": "LALT Send Key List", "contents": "{LALT}" }, 57 | { "trigger": "RALT Send Key List", "contents": "{RALT}" }, 58 | { "trigger": "LCTRL Send Key List", "contents": "{LCTRL}" }, 59 | { "trigger": "RCTRL Send Key List", "contents": "{RCTRL}" }, 60 | { "trigger": "LSHIFT Send Key List", "contents": "{LSHIFT}" }, 61 | { "trigger": "RSHIFT Send Key List", "contents": "{RSHIFT}" }, 62 | { "trigger": "SLEEP Send Key List", "contents": "{SLEEP}" }, 63 | { "trigger": "ALTDOWN Send Key List", "contents": "{ALTDOWN}" }, 64 | { "trigger": "SHIFTDOWN Send Key List", "contents": "{SHIFTDOWN}" }, 65 | { "trigger": "CTRLDOWN Send Key List", "contents": "{CTRLDOWN}" }, 66 | { "trigger": "LWINDOWN Send Key List", "contents": "{LWINDOWN}" }, 67 | { "trigger": "RWINDOWN Send Key List", "contents": "{RWINDOWN}" }, 68 | { "trigger": "ASC Send Key List", "contents": "{ASC ${1:numeric}}" }, 69 | { "trigger": "BROWSER_BACK Send Key List", "contents": "{BROWSER_BACK}"}, 70 | { "trigger": "BROWSER_FORWARD Send Key List", "contents": "{BROWSER_FORWARD}"}, 71 | { "trigger": "BROWSER_REFRESH Send Key List", "contents": "{BROWSER_REFRESH}"}, 72 | { "trigger": "BROWSER_STOP Send Key List", "contents": "{BROWSER_STOP}"}, 73 | { "trigger": "BROWSER_SEARCH Send Key List", "contents": "{BROWSER_SEARCH}"}, 74 | { "trigger": "BROWSER_FAVORITES Send Key List", "contents": "{BROWSER_FAVORITES}"}, 75 | { "trigger": "BROWSER_HOME Send Key List", "contents": "{BROWSER_HOME}"}, 76 | { "trigger": "VOLUME_MUTE Send Key List", "contents": "{VOLUME_MUTE}"}, 77 | { "trigger": "VOLUME_DOWN Send Key List", "contents": "{VOLUME_DOWN}"}, 78 | { "trigger": "VOLUME_UP Send Key List", "contents": "{VOLUME_UP}"}, 79 | { "trigger": "MEDIA_NEXT Send Key List", "contents": "{MEDIA_NEXT}"}, 80 | { "trigger": "MEDIA_PREV Send Key List", "contents": "{MEDIA_PREV}"}, 81 | { "trigger": "MEDIA_STOP Send Key List", "contents": "{MEDIA_STOP}"}, 82 | { "trigger": "MEDIA_PLAY_PAUSE Send Key List", "contents": "{MEDIA_PLAY_PAUSE}"}, 83 | { "trigger": "LAUNCH_MAIL Send Key List", "contents": "{LAUNCH_MAIL}"}, 84 | { "trigger": "LAUNCH_MEDIA Send Key List", "contents": "{LAUNCH_MEDIA}"}, 85 | { "trigger": "LAUNCH_APP1 Send Key List", "contents": "{LAUNCH_APP1}"}, 86 | { "trigger": "LAUNCH_APP2 Send Key List", "contents": "{LAUNCH_APP2}"}, 87 | { "trigger": "OEM_102 Send Key List", "contents": "{OEM_102}"}, 88 | ] 89 | } -------------------------------------------------------------------------------- /Completions/Snippets.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [{ 4 | "trigger": "Func", 5 | "contents": "Func ${1:NameFunc}()\n\n\t${2}\n\nEndFunc" 6 | }, { 7 | "trigger": "If", 8 | "contents": "If ( ${1:true} ) Then\n\n\t${2}\n\nEndIf" 9 | }, { 10 | "trigger": "Ternary", 11 | "contents": "${1:\\$variable} = ( ${2:\\$a == \\$b} ) ? ${3:true} : ${4:false}" 12 | }, { 13 | "trigger": "Switch", 14 | "contents": "Switch (${1:\\$variable})\n\tCase ${2:6 To 11}\n\t\t${3:true}\n\tCase ${4:12 To 17}\n\t\t${5:true}\n\tCase Else\n\t\t${6:false}\nEndSwitch" 15 | }, { 16 | "trigger": "While", 17 | "contents": "While ( ${1:true} )\n\n\t${2}\n\nWEnd" 18 | }, { 19 | "trigger": "ForInNext", 20 | "contents": "For ${1:\\$vElement} In ${2:\\$aArray}\n\n\t${3:ConsoleWrite(\\$vElement)}\n\nNext" 21 | }, { 22 | "trigger": "ForToStepNext", 23 | "contents": "For \\$${1:i} = ${2:0} To ${3:1} Step ${4:+1}\n\n\t${5:ConsoleWrite(\\$i)}\n\nNext" 24 | }, { 25 | "trigger": "#cs", 26 | "contents": "#cs\n\t${1}\n#ce" 27 | }, { 28 | "trigger": "Do...Until", 29 | "contents": "Do\n\n\t${1}\n\nUntil ( ${2:false} )" 30 | }, { 31 | "trigger": "Region...EndRegion", 32 | "contents": "#Region\n\n\t${1}\n\n#EndRegion" 33 | }] 34 | } -------------------------------------------------------------------------------- /Completions/WindowMessageCodes.sublime-completions: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "source.autoit", 3 | "completions": [ 4 | { "trigger": "WM_ACTIVATE", "contents": "WM_ACTIVATE" }, 5 | { "trigger": "WM_ACTIVATEAPP", "contents": "WM_ACTIVATEAPP" }, 6 | { "trigger": "WM_AFXFIRST", "contents": "WM_AFXFIRST" }, 7 | { "trigger": "WM_AFXLAST", "contents": "WM_AFXLAST" }, 8 | { "trigger": "WM_APP", "contents": "WM_APP" }, 9 | { "trigger": "WM_APPCOMMAND", "contents": "WM_APPCOMMAND" }, 10 | { "trigger": "WM_ASKCBFORMATNAME", "contents": "WM_ASKCBFORMATNAME" }, 11 | { "trigger": "WM_CANCELJOURNAL", "contents": "WM_CANCELJOURNAL" }, 12 | { "trigger": "WM_CANCELMODE", "contents": "WM_CANCELMODE" }, 13 | { "trigger": "WM_CAPTURECHANGED", "contents": "WM_CAPTURECHANGED" }, 14 | { "trigger": "WM_CHANGECBCHAIN", "contents": "WM_CHANGECBCHAIN" }, 15 | { "trigger": "WM_CHANGEUISTATE", "contents": "WM_CHANGEUISTATE" }, 16 | { "trigger": "WM_CHAR", "contents": "WM_CHAR" }, 17 | { "trigger": "WM_CHARTOITEM", "contents": "WM_CHARTOITEM" }, 18 | { "trigger": "WM_CHILDACTIVATE", "contents": "WM_CHILDACTIVATE" }, 19 | { "trigger": "WM_CLEAR", "contents": "WM_CLEAR" }, 20 | { "trigger": "WM_CLOSE", "contents": "WM_CLOSE" }, 21 | { "trigger": "WM_COMMAND", "contents": "WM_COMMAND" }, 22 | { "trigger": "WM_COMMNOTIFY", "contents": "WM_COMMNOTIFY" }, 23 | { "trigger": "WM_COMPACTING", "contents": "WM_COMPACTING" }, 24 | { "trigger": "WM_COMPAREITEM", "contents": "WM_COMPAREITEM" }, 25 | { "trigger": "WM_CONTEXTMENU", "contents": "WM_CONTEXTMENU" }, 26 | { "trigger": "WM_COPY", "contents": "WM_COPY" }, 27 | { "trigger": "WM_COPYDATA", "contents": "WM_COPYDATA" }, 28 | { "trigger": "WM_CREATE", "contents": "WM_CREATE" }, 29 | { "trigger": "WM_CTLCOLORBTN", "contents": "WM_CTLCOLORBTN" }, 30 | { "trigger": "WM_CTLCOLORDLG", "contents": "WM_CTLCOLORDLG" }, 31 | { "trigger": "WM_CTLCOLOREDIT", "contents": "WM_CTLCOLOREDIT" }, 32 | { "trigger": "WM_CTLCOLORLISTBOX", "contents": "WM_CTLCOLORLISTBOX" }, 33 | { "trigger": "WM_CTLCOLORMSGBOX", "contents": "WM_CTLCOLORMSGBOX" }, 34 | { "trigger": "WM_CTLCOLORSCROLLBAR", "contents": "WM_CTLCOLORSCROLLBAR" }, 35 | { "trigger": "WM_CTLCOLORSTATIC", "contents": "WM_CTLCOLORSTATIC" }, 36 | { "trigger": "WM_CUT", "contents": "WM_CUT" }, 37 | { "trigger": "WM_DEADCHAR", "contents": "WM_DEADCHAR" }, 38 | { "trigger": "WM_DELETEITEM", "contents": "WM_DELETEITEM" }, 39 | { "trigger": "WM_DESTROY", "contents": "WM_DESTROY" }, 40 | { "trigger": "WM_DESTROYCLIPBOARD", "contents": "WM_DESTROYCLIPBOARD" }, 41 | { "trigger": "WM_DEVICECHANGE", "contents": "WM_DEVICECHANGE" }, 42 | { "trigger": "WM_DEVMODECHANGE", "contents": "WM_DEVMODECHANGE" }, 43 | { "trigger": "WM_DISPLAYCHANGE", "contents": "WM_DISPLAYCHANGE" }, 44 | { "trigger": "WM_DRAWCLIPBOARD", "contents": "WM_DRAWCLIPBOARD" }, 45 | { "trigger": "WM_DRAWITEM", "contents": "WM_DRAWITEM" }, 46 | { "trigger": "WM_DROPFILES", "contents": "WM_DROPFILES" }, 47 | { "trigger": "WM_ENABLE", "contents": "WM_ENABLE" }, 48 | { "trigger": "WM_ENDSESSION", "contents": "WM_ENDSESSION" }, 49 | { "trigger": "WM_ENTERIDLE", "contents": "WM_ENTERIDLE" }, 50 | { "trigger": "WM_ENTERMENULOOP", "contents": "WM_ENTERMENULOOP" }, 51 | { "trigger": "WM_ENTERSIZEMOVE", "contents": "WM_ENTERSIZEMOVE" }, 52 | { "trigger": "WM_ERASEBKGND", "contents": "WM_ERASEBKGND" }, 53 | { "trigger": "WM_EXITMENULOOP", "contents": "WM_EXITMENULOOP" }, 54 | { "trigger": "WM_EXITSIZEMOVE", "contents": "WM_EXITSIZEMOVE" }, 55 | { "trigger": "WM_FONTCHANGE", "contents": "WM_FONTCHANGE" }, 56 | { "trigger": "WM_GETDLGCODE", "contents": "WM_GETDLGCODE" }, 57 | { "trigger": "WM_GETFONT", "contents": "WM_GETFONT" }, 58 | { "trigger": "WM_GETHOTKEY", "contents": "WM_GETHOTKEY" }, 59 | { "trigger": "WM_GETICON", "contents": "WM_GETICON" }, 60 | { "trigger": "WM_GETMINMAXINFO", "contents": "WM_GETMINMAXINFO" }, 61 | { "trigger": "WM_GETOBJECT", "contents": "WM_GETOBJECT" }, 62 | { "trigger": "WM_GETTEXT", "contents": "WM_GETTEXT" }, 63 | { "trigger": "WM_GETTEXTLENGTH", "contents": "WM_GETTEXTLENGTH" }, 64 | { "trigger": "WM_HANDHELDFIRST", "contents": "WM_HANDHELDFIRST" }, 65 | { "trigger": "WM_HANDHELDLAST", "contents": "WM_HANDHELDLAST" }, 66 | { "trigger": "WM_HELP", "contents": "WM_HELP" }, 67 | { "trigger": "WM_HOTKEY", "contents": "WM_HOTKEY" }, 68 | { "trigger": "WM_HSCROLL", "contents": "WM_HSCROLL" }, 69 | { "trigger": "WM_HSCROLLCLIPBOARD", "contents": "WM_HSCROLLCLIPBOARD" }, 70 | { "trigger": "WM_ICONERASEBKGND", "contents": "WM_ICONERASEBKGND" }, 71 | { "trigger": "WM_IME_CHAR", "contents": "WM_IME_CHAR" }, 72 | { "trigger": "WM_IME_COMPOSITION", "contents": "WM_IME_COMPOSITION" }, 73 | { "trigger": "WM_IME_COMPOSITIONFULL", "contents": "WM_IME_COMPOSITIONFULL" }, 74 | { "trigger": "WM_IME_CONTROL", "contents": "WM_IME_CONTROL" }, 75 | { "trigger": "WM_IME_ENDCOMPOSITION", "contents": "WM_IME_ENDCOMPOSITION" }, 76 | { "trigger": "WM_IME_KEYDOWN", "contents": "WM_IME_KEYDOWN" }, 77 | { "trigger": "WM_IME_KEYLAST", "contents": "WM_IME_KEYLAST" }, 78 | { "trigger": "WM_IME_KEYUP", "contents": "WM_IME_KEYUP" }, 79 | { "trigger": "WM_IME_NOTIFY", "contents": "WM_IME_NOTIFY" }, 80 | { "trigger": "WM_IME_REQUEST", "contents": "WM_IME_REQUEST" }, 81 | { "trigger": "WM_IME_SELECT", "contents": "WM_IME_SELECT" }, 82 | { "trigger": "WM_IME_SETCONTEXT", "contents": "WM_IME_SETCONTEXT" }, 83 | { "trigger": "WM_IME_STARTCOMPOSITION", "contents": "WM_IME_STARTCOMPOSITION" }, 84 | { "trigger": "WM_INITDIALOG", "contents": "WM_INITDIALOG" }, 85 | { "trigger": "WM_INITMENU", "contents": "WM_INITMENU" }, 86 | { "trigger": "WM_INITMENUPOPUP", "contents": "WM_INITMENUPOPUP" }, 87 | { "trigger": "WM_INPUT", "contents": "WM_INPUT" }, 88 | { "trigger": "WM_INPUTLANGCHANGE", "contents": "WM_INPUTLANGCHANGE" }, 89 | { "trigger": "WM_INPUTLANGCHANGEREQUEST", "contents": "WM_INPUTLANGCHANGEREQUEST" }, 90 | { "trigger": "WM_KEYDOWN", "contents": "WM_KEYDOWN" }, 91 | { "trigger": "WM_KEYFIRST", "contents": "WM_KEYFIRST" }, 92 | { "trigger": "WM_KEYLAST (Windows 2000)", "contents": "WM_KEYLAST (Windows 2000)" }, 93 | { "trigger": "WM_KEYLAST", "contents": "WM_KEYLAST" }, 94 | { "trigger": "WM_KEYUP", "contents": "WM_KEYUP" }, 95 | { "trigger": "WM_KILLFOCUS", "contents": "WM_KILLFOCUS" }, 96 | { "trigger": "WM_LBUTTONDBLCLK", "contents": "WM_LBUTTONDBLCLK" }, 97 | { "trigger": "WM_LBUTTONDOWN", "contents": "WM_LBUTTONDOWN" }, 98 | { "trigger": "WM_LBUTTONUP", "contents": "WM_LBUTTONUP" }, 99 | { "trigger": "WM_MBUTTONDBLCLK", "contents": "WM_MBUTTONDBLCLK" }, 100 | { "trigger": "WM_MBUTTONDOWN", "contents": "WM_MBUTTONDOWN" }, 101 | { "trigger": "WM_MBUTTONUP", "contents": "WM_MBUTTONUP" }, 102 | { "trigger": "WM_MDIACTIVATE", "contents": "WM_MDIACTIVATE" }, 103 | { "trigger": "WM_MDICASCADE", "contents": "WM_MDICASCADE" }, 104 | { "trigger": "WM_MDICREATE", "contents": "WM_MDICREATE" }, 105 | { "trigger": "WM_MDIDESTROY", "contents": "WM_MDIDESTROY" }, 106 | { "trigger": "WM_MDIGETACTIVE", "contents": "WM_MDIGETACTIVE" }, 107 | { "trigger": "WM_MDIICONARRANGE", "contents": "WM_MDIICONARRANGE" }, 108 | { "trigger": "WM_MDIMAXIMIZE", "contents": "WM_MDIMAXIMIZE" }, 109 | { "trigger": "WM_MDINEXT", "contents": "WM_MDINEXT" }, 110 | { "trigger": "WM_MDIREFRESHMENU", "contents": "WM_MDIREFRESHMENU" }, 111 | { "trigger": "WM_MDIRESTORE", "contents": "WM_MDIRESTORE" }, 112 | { "trigger": "WM_MDISETMENU", "contents": "WM_MDISETMENU" }, 113 | { "trigger": "WM_MDITILE", "contents": "WM_MDITILE" }, 114 | { "trigger": "WM_MEASUREITEM", "contents": "WM_MEASUREITEM" }, 115 | { "trigger": "WM_MENUCHAR", "contents": "WM_MENUCHAR" }, 116 | { "trigger": "WM_MENUCOMMAND", "contents": "WM_MENUCOMMAND" }, 117 | { "trigger": "WM_MENUDRAG", "contents": "WM_MENUDRAG" }, 118 | { "trigger": "WM_MENUGETOBJECT", "contents": "WM_MENUGETOBJECT" }, 119 | { "trigger": "WM_MENURBUTTONUP", "contents": "WM_MENURBUTTONUP" }, 120 | { "trigger": "WM_MENUSELECT", "contents": "WM_MENUSELECT" }, 121 | { "trigger": "WM_MOUSEACTIVATE", "contents": "WM_MOUSEACTIVATE" }, 122 | { "trigger": "WM_MOUSEFIRST", "contents": "WM_MOUSEFIRST" }, 123 | { "trigger": "WM_MOUSEHOVER", "contents": "WM_MOUSEHOVER" }, 124 | { "trigger": "WM_MOUSELAST(2K,XP,2k3)", "contents": "WM_MOUSELAST(2K,XP,2k3)" }, 125 | { "trigger": "WM_MOUSELAST(95)", "contents": "WM_MOUSELAST(95)" }, 126 | { "trigger": "WM_MOUSELAST(NT4,98)", "contents": "WM_MOUSELAST(NT4,98)" }, 127 | { "trigger": "WM_MOUSELEAVE", "contents": "WM_MOUSELEAVE" }, 128 | { "trigger": "WM_MOUSEMOVE", "contents": "WM_MOUSEMOVE" }, 129 | { "trigger": "WM_MOUSEWHEEL", "contents": "WM_MOUSEWHEEL" }, 130 | { "trigger": "WM_MOVE", "contents": "WM_MOVE" }, 131 | { "trigger": "WM_MOVING", "contents": "WM_MOVING" }, 132 | { "trigger": "WM_NCACTIVATE", "contents": "WM_NCACTIVATE" }, 133 | { "trigger": "WM_NCCALCSIZE", "contents": "WM_NCCALCSIZE" }, 134 | { "trigger": "WM_NCCREATE", "contents": "WM_NCCREATE" }, 135 | { "trigger": "WM_NCDESTROY", "contents": "WM_NCDESTROY" }, 136 | { "trigger": "WM_NCHITTEST", "contents": "WM_NCHITTEST" }, 137 | { "trigger": "WM_NCLBUTTONDBLCLK", "contents": "WM_NCLBUTTONDBLCLK" }, 138 | { "trigger": "WM_NCLBUTTONDOWN", "contents": "WM_NCLBUTTONDOWN" }, 139 | { "trigger": "WM_NCLBUTTONUP", "contents": "WM_NCLBUTTONUP" }, 140 | { "trigger": "WM_NCMBUTTONDBLCLK", "contents": "WM_NCMBUTTONDBLCLK" }, 141 | { "trigger": "WM_NCMBUTTONDOWN", "contents": "WM_NCMBUTTONDOWN" }, 142 | { "trigger": "WM_NCMBUTTONUP", "contents": "WM_NCMBUTTONUP" }, 143 | { "trigger": "WM_NCMOUSEHOVER", "contents": "WM_NCMOUSEHOVER" }, 144 | { "trigger": "WM_NCMOUSELEAVE", "contents": "WM_NCMOUSELEAVE" }, 145 | { "trigger": "WM_NCMOUSEMOVE", "contents": "WM_NCMOUSEMOVE" }, 146 | { "trigger": "WM_NCPAINT", "contents": "WM_NCPAINT" }, 147 | { "trigger": "WM_NCRBUTTONDBLCLK", "contents": "WM_NCRBUTTONDBLCLK" }, 148 | { "trigger": "WM_NCRBUTTONDOWN", "contents": "WM_NCRBUTTONDOWN" }, 149 | { "trigger": "WM_NCRBUTTONUP", "contents": "WM_NCRBUTTONUP" }, 150 | { "trigger": "WM_NCXBUTTONDBLCLK", "contents": "WM_NCXBUTTONDBLCLK" }, 151 | { "trigger": "WM_NCXBUTTONDOWN", "contents": "WM_NCXBUTTONDOWN" }, 152 | { "trigger": "WM_NCXBUTTONUP", "contents": "WM_NCXBUTTONUP" }, 153 | { "trigger": "WM_NEXTDLGCTL", "contents": "WM_NEXTDLGCTL" }, 154 | { "trigger": "WM_NEXTMENU", "contents": "WM_NEXTMENU" }, 155 | { "trigger": "WM_NOTIFY", "contents": "WM_NOTIFY" }, 156 | { "trigger": "WM_NOTIFYFORMAT", "contents": "WM_NOTIFYFORMAT" }, 157 | { "trigger": "WM_NULL", "contents": "WM_NULL" }, 158 | { "trigger": "WM_PAINT", "contents": "WM_PAINT" }, 159 | { "trigger": "WM_PAINTCLIPBOARD", "contents": "WM_PAINTCLIPBOARD" }, 160 | { "trigger": "WM_PAINTICON", "contents": "WM_PAINTICON" }, 161 | { "trigger": "WM_PALETTECHANGED", "contents": "WM_PALETTECHANGED" }, 162 | { "trigger": "WM_PALETTEISCHANGING", "contents": "WM_PALETTEISCHANGING" }, 163 | { "trigger": "WM_PARENTNOTIFY", "contents": "WM_PARENTNOTIFY" }, 164 | { "trigger": "WM_PASTE", "contents": "WM_PASTE" }, 165 | { "trigger": "WM_PENWINFIRST", "contents": "WM_PENWINFIRST" }, 166 | { "trigger": "WM_PENWINLAST", "contents": "WM_PENWINLAST" }, 167 | { "trigger": "WM_POWER", "contents": "WM_POWER" }, 168 | { "trigger": "WM_POWERBROADCAST", "contents": "WM_POWERBROADCAST" }, 169 | { "trigger": "WM_PRINT", "contents": "WM_PRINT" }, 170 | { "trigger": "WM_PRINTCLIENT", "contents": "WM_PRINTCLIENT" }, 171 | { "trigger": "WM_QUERYDRAGICON", "contents": "WM_QUERYDRAGICON" }, 172 | { "trigger": "WM_QUERYENDSESSION", "contents": "WM_QUERYENDSESSION" }, 173 | { "trigger": "WM_QUERYNEWPALETTE", "contents": "WM_QUERYNEWPALETTE" }, 174 | { "trigger": "WM_QUERYOPEN", "contents": "WM_QUERYOPEN" }, 175 | { "trigger": "WM_QUERYUISTATE", "contents": "WM_QUERYUISTATE" }, 176 | { "trigger": "WM_QUEUESYNC", "contents": "WM_QUEUESYNC" }, 177 | { "trigger": "WM_QUIT", "contents": "WM_QUIT" }, 178 | { "trigger": "WM_RBUTTONDBLCLK", "contents": "WM_RBUTTONDBLCLK" }, 179 | { "trigger": "WM_RBUTTONDOWN", "contents": "WM_RBUTTONDOWN" }, 180 | { "trigger": "WM_RBUTTONUP", "contents": "WM_RBUTTONUP" }, 181 | { "trigger": "WM_RENDERALLFORMATS", "contents": "WM_RENDERALLFORMATS" }, 182 | { "trigger": "WM_RENDERFORMAT", "contents": "WM_RENDERFORMAT" }, 183 | { "trigger": "WM_SETCURSOR", "contents": "WM_SETCURSOR" }, 184 | { "trigger": "WM_SETFOCUS", "contents": "WM_SETFOCUS" }, 185 | { "trigger": "WM_SETFONT", "contents": "WM_SETFONT" }, 186 | { "trigger": "WM_SETHOTKEY", "contents": "WM_SETHOTKEY" }, 187 | { "trigger": "WM_SETICON", "contents": "WM_SETICON" }, 188 | { "trigger": "WM_SETREDRAW", "contents": "WM_SETREDRAW" }, 189 | { "trigger": "WM_SETTEXT", "contents": "WM_SETTEXT" }, 190 | { "trigger": "WM_SETTINGCHANGE", "contents": "WM_SETTINGCHANGE" }, 191 | { "trigger": "WM_SHOWWINDOW", "contents": "WM_SHOWWINDOW" }, 192 | { "trigger": "WM_SIZE", "contents": "WM_SIZE" }, 193 | { "trigger": "WM_SIZECLIPBOARD", "contents": "WM_SIZECLIPBOARD" }, 194 | { "trigger": "WM_SIZING", "contents": "WM_SIZING" }, 195 | { "trigger": "WM_SPOOLERSTATUS", "contents": "WM_SPOOLERSTATUS" }, 196 | { "trigger": "WM_STYLECHANGED", "contents": "WM_STYLECHANGED" }, 197 | { "trigger": "WM_STYLECHANGING", "contents": "WM_STYLECHANGING" }, 198 | { "trigger": "WM_SYNCPAINT", "contents": "WM_SYNCPAINT" }, 199 | { "trigger": "WM_SYSCHAR", "contents": "WM_SYSCHAR" }, 200 | { "trigger": "WM_SYSCOLORCHANGE", "contents": "WM_SYSCOLORCHANGE" }, 201 | { "trigger": "WM_SYSCOMMAND", "contents": "WM_SYSCOMMAND" }, 202 | { "trigger": "WM_SYSDEADCHAR", "contents": "WM_SYSDEADCHAR" }, 203 | { "trigger": "WM_SYSKEYDOWN", "contents": "WM_SYSKEYDOWN" }, 204 | { "trigger": "WM_SYSKEYUP", "contents": "WM_SYSKEYUP" }, 205 | { "trigger": "WM_TABLET_FIRST", "contents": "WM_TABLET_FIRST" }, 206 | { "trigger": "WM_TABLET_LAST", "contents": "WM_TABLET_LAST" }, 207 | { "trigger": "WM_TCARD", "contents": "WM_TCARD" }, 208 | { "trigger": "WM_THEMECHANGED", "contents": "WM_THEMECHANGED" }, 209 | { "trigger": "WM_TIMECHANGE", "contents": "WM_TIMECHANGE" }, 210 | { "trigger": "WM_TIMER", "contents": "WM_TIMER" }, 211 | { "trigger": "WM_UNDO", "contents": "WM_UNDO" }, 212 | { "trigger": "WM_UNICHAR", "contents": "WM_UNICHAR" }, 213 | { "trigger": "WM_UNINITMENUPOPUP", "contents": "WM_UNINITMENUPOPUP" }, 214 | { "trigger": "WM_UPDATEUISTATE", "contents": "WM_UPDATEUISTATE" }, 215 | { "trigger": "WM_USER", "contents": "WM_USER" }, 216 | { "trigger": "WM_USERCHANGED", "contents": "WM_USERCHANGED" }, 217 | { "trigger": "WM_VKEYTOITEM", "contents": "WM_VKEYTOITEM" }, 218 | { "trigger": "WM_VSCROLL", "contents": "WM_VSCROLL" }, 219 | { "trigger": "WM_VSCROLLCLIPBOARD", "contents": "WM_VSCROLLCLIPBOARD" }, 220 | { "trigger": "WM_WINDOWPOSCHANGED", "contents": "WM_WINDOWPOSCHANGED" }, 221 | { "trigger": "WM_WINDOWPOSCHANGING", "contents": "WM_WINDOWPOSCHANGING" }, 222 | { "trigger": "WM_WININICHANGE", "contents": "WM_WININICHANGE" }, 223 | { "trigger": "WM_WTSSESSION_CHANGE", "contents": "WM_WTSSESSION_CHANGE" }, 224 | { "trigger": "WM_XBUTTONDBLCLK", "contents": "WM_XBUTTONDBLCLK" }, 225 | { "trigger": "WM_XBUTTONDOWN", "contents": "WM_XBUTTONDOWN" }, 226 | { "trigger": "WM_XBUTTONUP", "contents": "WM_XBUTTONUP" } 227 | ] 228 | } 229 | -------------------------------------------------------------------------------- /Include_Helper.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoIt/SublimeAutoItScript/2b2e950c7edb47da76d335fb205593bc83987a19/Include_Helper.au3 -------------------------------------------------------------------------------- /Include_Helper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoIt/SublimeAutoItScript/2b2e950c7edb47da76d335fb205593bc83987a19/Include_Helper.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 AutoIt 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Tools", 4 | "mnemonic": "T", 5 | "id": "tools", 6 | "children": 7 | [ 8 | { "caption": "-", "id": "packagecommands" }, 9 | { "command": "autoittidy", "caption": "AutoIt - Tidy", "mnemonic": "T"}, 10 | { "command": "autoitincludehelper", "caption": "AutoIt - IncludeHelper", "mnemonic": "I"}, 11 | { "command": "autoitinfo", "caption": "AutoIt - Info", "mnemonic": "f"}, 12 | { "command": "autoithelp", "caption": "AutoIt - Help", "mnemonic": "H"} 13 | ] 14 | }, 15 | { 16 | "caption": "Preferences", 17 | "id": "preferences", 18 | "children": 19 | [ 20 | { 21 | "caption": "Package Settings", 22 | "mnemonic": "P", 23 | "id": "package-settings", 24 | "children": 25 | [ 26 | { 27 | "caption": "AutoIt", 28 | "children": 29 | [ 30 | { 31 | "command": "open_file", 32 | "args": {"file": "${packages}/AutoItScript/AutoIt.sublime-settings"}, 33 | "caption": "AutoIt Settings - Default" 34 | }, 35 | { 36 | "command": "open_file", 37 | "args": {"file": "${packages}/User/AutoIt.sublime-settings"}, 38 | "caption": "AutoIt Settings - User" 39 | } 40 | ] 41 | } 42 | ] 43 | } 44 | ] 45 | } 46 | ] 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SublimeAutoItScript - Package for Sublime Text 2/3 2 | AutoItScript Au3 language package for SublimeText including syntax highlighting, comments toggling, auto-completions, build systems for run and compile, Tidy command, IncludeHelper command. 3 | 4 | ## Package Installation 5 | * Manual method: Download ZIP from github. Extract the files to [Sublime_Data_Dir](http://docs.sublimetext.info/en/latest/basic_concepts.html#the-data-directory)\Packages\AutoItScript 6 | * Automatic method: Use [wbond package control](https://sublime.wbond.net/). 7 | 8 | ## Key Bindings 9 | If you have the default Sublime keybindings intact, then: 10 | * Ctrl+B will run the current file (with AutoIt3.exe) 11 | * Ctrl+Shift+B will compile the current file (with Aut2Exe.exe) 12 | * Alt+TT will invoke Tidy on the current file (with Tidy.exe). 13 | * Alt+TI will invoke IncludeHelper on the current file. 14 | * Alt+TF will invoke AutoIt Window Info. 15 | * Alt+TH will invoke AutoIt Help. 16 | 17 | ## Advanced Configuration 18 | For the build systems and Tidy command, if you have a non-default installation you will need to set your specific path to AutoIt3.exe, Aut2Exe.exe, and Tidy.exe in a file named AutoIt.sublime-settings in your User folder. You can access the settings file from Menu `Preferences > Package Settings > AutoIt`. You should make a copy of `AutoIt Settings - Default` at `AutoIt Settings - User` since then your settings file in your User folder will not get overwritten when this package updates. 19 | 20 | ## Goto-documentation Integration 21 | Instructions on how to configure goto-documentation plugin for AutoIt (F1 Hotkey will take you to documentation for word under cursor): 22 | * https://github.com/AutoIt/AutoItScript/blob/master/goto-documentation_instructions.md 23 | 24 | ## Credits 25 | * Syntax rules: http://sublime-text-community-packages.googlecode.com/svn/pages/AutoIt.html 26 | * Snippets: http://www.autoitscript.com/forum/topic/148016-sublimetext/page-3#entry1080276 27 | * IncludeHelper AZJIO: http://www.autoitscript.com/forum/topic/130468-constants-helper/#entry908064 28 | -------------------------------------------------------------------------------- /autoitbuild.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | import sublime, sublime_plugin 3 | import subprocess 4 | import os 5 | 6 | # The autoitbuild command is called as target by AutoIt.sublime-build 7 | class autoitbuild(sublime_plugin.WindowCommand): 8 | def run(self): 9 | filepath = self.window.active_view().file_name() 10 | AutoItExePath = sublime.load_settings("AutoIt.sublime-settings").get("AutoItExePath") 11 | cmd = [AutoItExePath, "/ErrorStdOut", filepath] 12 | self.window.run_command("exec", {"cmd": cmd}) 13 | 14 | class autoitcompile(sublime_plugin.WindowCommand): 15 | def run(self): 16 | filepath = self.window.active_view().file_name() 17 | AutoItCompilerPath = sublime.load_settings("AutoIt.sublime-settings").get("AutoItCompilerPath") 18 | cmd = [AutoItCompilerPath, "/in", filepath] 19 | self.window.run_command("exec", {"cmd": cmd}) 20 | 21 | class autoittidy(sublime_plugin.WindowCommand): 22 | def run(self): 23 | self.window.run_command("save") 24 | filepath = self.window.active_view().file_name() 25 | TidyExePath = sublime.load_settings("AutoIt.sublime-settings").get("TidyExePath") 26 | tidycmd = [TidyExePath, filepath] 27 | try: 28 | tidyprocess = subprocess.Popen(tidycmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True) 29 | tidyoutput = tidyprocess.communicate()[0].rstrip() 30 | tidyoutputskipfirstline = "".join(tidyoutput.splitlines(True)[1:]) 31 | self.window.run_command("revert") 32 | print("------------ Beginning AutoIt Tidy ------------") 33 | print(tidyoutput) 34 | if("Tidy Error" in tidyoutput): 35 | sublime.active_window().run_command("show_panel", {"panel": "console"}) 36 | sublime.status_message("### Tidy Errors : Please See Console") 37 | else: 38 | sublime.status_message(tidyoutputskipfirstline) 39 | except Exception as e: 40 | sublime.active_window().run_command("show_panel", {"panel": "console"}) 41 | print("------------ ERROR: Python exception trying to run Tidy ------------") 42 | print("TidyCmd was: " + " ".join(tidycmd)) 43 | print("Error {0}".format(str(e))) 44 | sublime.status_message("### EXCEPTION: " + str(e)) 45 | 46 | class autoitincludehelper(sublime_plugin.WindowCommand): 47 | def run(self): 48 | self.window.run_command("save") 49 | 50 | filepath = self.window.active_view().file_name() 51 | AutoItExePath = sublime.load_settings("AutoIt.sublime-settings").get("AutoItExePath") 52 | AutoItIncludeFolder = os.path.dirname(AutoItExePath) + "\\Include" 53 | 54 | IncludeHelperAU3Path = sublime.load_settings("AutoIt.sublime-settings").get("IncludeHelperAU3Path") 55 | if (IncludeHelperAU3Path is None): 56 | IncludeHelperAU3Path = "{PACKAGE_PATH}\\AutoItScript\\Include_Helper.au3" 57 | IncludeHelperAU3Path = IncludeHelperAU3Path.replace("{PACKAGE_PATH}", sublime.packages_path()) 58 | 59 | AutoItIncludeCmd = [AutoItExePath, IncludeHelperAU3Path, filepath, AutoItIncludeFolder] 60 | 61 | try: 62 | subprocess.call(AutoItIncludeCmd) 63 | self.window.run_command("revert") 64 | sublime.status_message("AutoIt IncludeHelper Finished") 65 | except Exception as e: 66 | sublime.active_window().run_command("show_panel", {"panel": "console"}) 67 | print("------------ ERROR: Python exception trying to run following command ------------") 68 | print(AutoItIncludeCmd) 69 | print("Error {0}".format(str(e))) 70 | 71 | class autoitinfo(sublime_plugin.WindowCommand): 72 | def run(self): 73 | AutoItInfo = sublime.load_settings("AutoIt.sublime-settings").get("AutoItInfo") 74 | 75 | try: 76 | os.startfile(AutoItInfo) 77 | except Exception as e: 78 | sublime.active_window().run_command("show_panel", {"panel": "console"}) 79 | print("------------ ERROR: Python exception trying to run following command ------------") 80 | print("Error {0}".format(str(e))) 81 | 82 | class autoithelp(sublime_plugin.WindowCommand): 83 | def run(self): 84 | AutoItHelp = sublime.load_settings("AutoIt.sublime-settings").get("AutoItHelp") 85 | 86 | try: 87 | os.startfile(AutoItHelp) 88 | except Exception as e: 89 | sublime.active_window().run_command("show_panel", {"panel": "console"}) 90 | print("------------ ERROR: Python exception trying to run following command ------------") 91 | print("Error {0}".format(str(e))) 92 | -------------------------------------------------------------------------------- /goto-documentation_instructions.md: -------------------------------------------------------------------------------- 1 | ## How to map F1 Key in SublimeText to open AutoIt documentation for the word under the keyboard cusor. 2 | 3 | 4 | ### 1. Install goto-documentation plugin 5 | 6 | [Download ZIP from the goto-documentation github page](https://github.com/kemayo/sublime-text-2-goto-documentation) and unzip files to directory: `Sublime_Data_Dir\Packages\goto-documentation`. 7 | 8 | * Note: although not specified, goto-documentation plugin works fine with both ST2 and ST3. 9 | * If you need help finding your Sublime_Data_Dir, see [here](http://docs.sublimetext.info/en/latest/basic_concepts.html#the-data-directory). 10 | 11 | ### 2. Set key binding for F1 12 | To the file `Sublime_Data_Dir\Packages\User\Default (Windows).sublime-keymap`, add: 13 | 14 |
{ "keys": ["f1"], "command": "goto_documentation" },
15 | 16 | ### 3. Set goto-documentation command for autoit scope 17 | To the file `Sublime_Data_Dir\Packages\goto-documentation\gotodocumentation.py`, add the following indented under "class GotoDocumentationCommand" (make sure it is correctly indented under the class since python is indent-sensitive). 18 | 19 | * To have it open in the online documentation 20 | 21 |
	def autoit_doc(self, keyword, scope):
22 | 		open_url("http://www.autoitscript.com/autoit3/docs/functions/%s.htm" % keyword)
23 | 24 | * To have it open in the help file documentation 25 | 26 |
	def autoit_doc(self, keyword, scope):
27 | 		cmd = ["hh.exe", r"mk:@MSITStore:C:\Program Files\AutoIt3\AutoIt3.chm::/html/functions/%s.htm" % keyword]
28 | 		subprocess.Popen(cmd)
29 | --------------------------------------------------------------------------------