Closed CodesAway closed 4 months ago
Suggested change will add the following to python.py
def code_break():
actions.insert("break")
def code_next():
actions.insert("continue")
I'll raise a PR to start a discussion.
https://github.com/talonhub/community/blob/5a9705869d96a0c55ea63c8dafab44f174d0383c/lang/java/java.py#L224-L228
These two methods are not implemented in Python.py (but I'm suggesting they should be).
I noticed they are part of the keywords, allowing
keyword continue
https://github.com/talonhub/community/blob/5a9705869d96a0c55ea63c8dafab44f174d0383c/lang/python/python.py#L62-L64