We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 162d8fd commit 0a843bfCopy full SHA for 0a843bf
bpython/curtsiesfrontend/repl.py
@@ -660,7 +660,7 @@ def current_word(self):
660
def _get_current_word(self):
661
pos = self.cursor_offset_in_line
662
663
- matches = list(re.finditer(r'''[\w_][\w0-9._\[\]']*[(]?''', self._current_line))
+ matches = list(re.finditer(r'[\w_][\w0-9._]*[(]?', self._current_line))
664
start = pos
665
end = pos
666
word = None
0 commit comments