You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MacroEnv.define_alias will error when you are actively typing an alias, as it is attempting to pass a "function call" to it.
This happens because we inject the cursor as __cursor__() into the source code, but that is not accurate. The same thing would
happen if you actually had typed a function call there.
Need to be more strict when expanding that part.
The text was updated successfully, but these errors were encountered:
Description
MacroEnv.define_alias
will error when you are actively typing an alias, as it is attempting to pass a "function call" to it.This happens because we inject the cursor as
__cursor__()
into the source code, but that is not accurate. The same thing wouldhappen if you actually had typed a function call there.
Need to be more strict when expanding that part.
The text was updated successfully, but these errors were encountered: