--- In [email protected], Alan Martin <[EMAIL PROTECTED]> wrote:
Hi Alan, > I just uploaded a new zip of syntax lists. > Current for Powerpro v 4.1.14 > > http://groups.yahoo.com/group/power-pro/files/Scripts/ > 0_Syntax_highlighting_project/SyntaxFilesV4414.zip > > Changes: > > - added missing words, including about 50 supplied by sgp > and new words for v 4.4.14 such as clip.save > > - removed some wrong words such as trayicon.leftclick > (should be trayicon.left) > > - removed some useless groups such as "parameter Keywords" > > - moved all commentary and advice from the generic list > into the Readme. Now it only contains group headings > and syntax words. I did that because I notice Johannes > automatically generates his PSPad list from it using a script. > > Thanks for uploading the PSPad files Johannes. Thanks for sharing it. It's excellent. I too want to share a sniffet to extract plugin's functions and write to _plugins_.txt under plugins folder (need dll plugin and latest PP): ---------------------------------------------------------------------- local plugfolder,plugs,num,fh,sName,sFuncs plugfolder=pprofolder++?"plugins\" ;; depends on configuration plugs=file.listfiles(plugfolder++"*.dll") ;plugs="clip date event file float int64 map note vec win" num=line(plugs,0) ;num=word(plugs,0) fh=file.open(plugfolder++"_plugins_.txt","w") for(local i=1;i<=num;i++) sName=file.name(line(plugs,i)) ;sName=word(plugs,i) sFuncs=dll.get_funcs(plugfolder++sName++".dll") sFuncs[?"\b\w+\b"]=sName++?".\0" fh.writeline(sFuncs) endfor fh.close quit ---------------------------------------------------------------------- Sean ------------------------ Yahoo! Groups Sponsor --------------------~--> Home is just a click away. Make Yahoo! your home page now. http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/JV_rlB/TM --------------------------------------------------------------------~-> Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
