-
-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kwagrs for macro calls #252
Comments
Thanks! Pluto works by figuring out the set of assigned variables and referenced variables for each cell. If one cell references a symbol In this case, a bug in the analysis treats the keyword argument A more general problem is that Pluto doesn't understand macros (#196), but luckily this macro can be parsed as if it is a function call - it does not need to be expanded for the syntax analysis to work. |
Should be fixed now, can you try again?> |
You need to run the master branch of Pluto |
This can't be fixed without expanding the macro (#196): Try using a semicolon: @vlplot(
:a;
x = :b,
...
) |
This has been fixed by #670 |
I started working on supporting rendering of the vega and vegalite mime types (nominally working!), but I ran into the below issue when trying to have two plots:
I ran
@macroexpand
on the expressions and got:I'm not sure why it's registering the x and y as variables in the main scope. Any idea what's happening here?
The text was updated successfully, but these errors were encountered: