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
this is a minor improvement but I would be great to have the green selection go all the way down to the end of multiple line strings when executing step by step.
For example
the green selection while executing here should be starting at line 1 and finishing at line 5
code:
s="""
This is a comment
written in
more than just one line
"""
print("Hello, World!",s)
Unfortunately, Skulpt only sends the line number of the suspension. We have no way to know if it's a multiline instruction: it could be a dict defined on multiple lines, or other types of data. That would require creating a new Python parser. This may not be a priority for now.
this is a minor improvement but I would be great to have the green selection go all the way down to the end of multiple line strings when executing step by step.
For example
the green selection while executing here should be starting at line 1 and finishing at line 5
code:
@GeoffreyHuck
The text was updated successfully, but these errors were encountered: