Skip to content

Commit 37609cd

Browse files
author
Orta
authored
Merge pull request #733 from matthandlersux/mh/fix-tab-completion
prevent interruption to tab based autocompletion
2 parents c79e0c9 + 6fafe75 commit 37609cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typescript/listeners/completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def on_query_completions(self, view, prefix, locations):
106106
info.last_completion_loc = locations[0]
107107
self.pending_completions = []
108108
self.completions_ready = False
109-
return completions, sublime.INHIBIT_WORD_COMPLETIONS | sublime.INHIBIT_EXPLICIT_COMPLETIONS
109+
return completions, sublime.INHIBIT_EXPLICIT_COMPLETIONS
110110

111111
def handle_completion_info(self, completions_resp):
112112
"""Helper callback when completion info received from server"""

0 commit comments

Comments
 (0)