Skip to content

Commit 0a843bf

Browse files
disable dictionary completion in bpython-curtsies - too buggy
1 parent 162d8fd commit 0a843bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ def current_word(self):
660660
def _get_current_word(self):
661661
pos = self.cursor_offset_in_line
662662

663-
matches = list(re.finditer(r'''[\w_][\w0-9._\[\]']*[(]?''', self._current_line))
663+
matches = list(re.finditer(r'[\w_][\w0-9._]*[(]?', self._current_line))
664664
start = pos
665665
end = pos
666666
word = None

0 commit comments

Comments
 (0)