Skip to content

Commit 9ef9c92

Browse files
committed
don't trigger context box if alt is pressed
1 parent 5fe94d9 commit 9ef9c92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

autocompletion/autocomplete_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def update_visibility(self, event, text_block):
9191
return self.hide()
9292

9393
char = event.unicode.lower()
94-
if len(char) > 0:
94+
if len(char) > 0 and not event.alt:
9595
if char in "abcdefghijklmnopqrstuvwxyz0123456789_({[\\/=@.":
9696
return self.show()
9797
if char in ":":

0 commit comments

Comments
 (0)