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
In #820, Angelo added the ability to report syntax errors related to unclosed sections with the proper error range. Because of this change, it should be easier to implement code actions to resolve these syntax errors. eg.
{#if variable}
we could have a code action to generate
{#if variable}
{/if}
or
{#if variable}
{/else}
we could have a code action to switch to
{#if variable}
{/if}
The text was updated successfully, but these errors were encountered:
In #820, Angelo added the ability to report syntax errors related to unclosed sections with the proper error range. Because of this change, it should be easier to implement code actions to resolve these syntax errors. eg.
we could have a code action to generate
or
we could have a code action to switch to
The text was updated successfully, but these errors were encountered: