We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When recorded and then played back in a macro, wrap with abbreviation reports an error in the console:
'EmmetWrapWithAbbreviation' object has no attribute 'wrap_entries'
It seem that some logic like this is missing in the def run block:
def run
sublime-text-plugin/main.py
Lines 355 to 379 in 843b50e
When emmet_wrap_with_abbreviation is directly called from within a macro, wrap_entries is undefined then.
emmet_wrap_with_abbreviation
wrap_entries
And since wrap_entries is always picked from the state of last widget input, it may also lead to other unexpected results?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When recorded and then played back in a macro, wrap with abbreviation reports an error in the console:
'EmmetWrapWithAbbreviation' object has no attribute 'wrap_entries'
It seem that some logic like this is missing in the
def run
block:sublime-text-plugin/main.py
Lines 355 to 379 in 843b50e
When
emmet_wrap_with_abbreviation
is directly called from within a macro,wrap_entries
is undefined then.And since
wrap_entries
is always picked from the state of last widget input, it may also lead to other unexpected results?The text was updated successfully, but these errors were encountered: