View Single Post
Old 11-28-2015, 08:32 PM   #91
cfillion
Human being with feelings
 
cfillion's Avatar
 
Join Date: May 2015
Location: Québec, Canada
Posts: 4,964
Default

Quote:
Originally Posted by mpl View Post
Just you to know I dont speak English well, so to be clear, should I merge metadata to master or you have done already everything by yourself? (Didn't get completely how member permissions work)
English is not my main language either (I speak French).

I'm using that branch as a work-in-progress for tuning the metadata tag syntax and adapting the script's headers. It will probably take a while before it's ready to be merged.

Currently the syntax I'm using is like this (similar to greasemonkey and doxygen):
https://github.com/cfillion/metaheader#readme

.lua file:
Code:
-- @version 1.0pre3

reaper.DoSomething();
.eel file:
Code:
/*
 * @version 1.0pre3
 */

DoSomething();
.eel file (alternative):
Code:
// @version 1.0pre3

DoSomething();
It's quite easy to parse and tell apart from normal comments not containing data, but I realise now that it's quite different from what everyone is used to...

Last edited by cfillion; 11-30-2015 at 12:10 AM.
cfillion is offline   Reply With Quote