Commit 0aca01f5 authored by Mark Florisson's avatar Mark Florisson

fix completion error on 'cy break'

parent 0ca73a7e
......@@ -752,6 +752,7 @@ class CyBreak(CythonCommand):
words = text.strip().split()
if words and '.' in words[-1]:
lastword = words[-1]
compl = [n for n in self.cy.functions_by_qualified_name
if n.startswith(lastword)]
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment