Skip to content

Commit

Permalink
don't trigger context box if alt is pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
JacquesLucke committed Jan 16, 2016
1 parent 5fe94d9 commit 9ef9c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autocompletion/autocomplete_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def update_visibility(self, event, text_block):
return self.hide()

char = event.unicode.lower()
if len(char) > 0:
if len(char) > 0 and not event.alt:
if char in "abcdefghijklmnopqrstuvwxyz0123456789_({[\\/=@.":
return self.show()
if char in ":":
Expand Down

0 comments on commit 9ef9c92

Please sign in to comment.