Skip to content

Commit 6fafe75

Browse files
do not inhibit word completions
1 parent 8bfce29 commit 6fafe75

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)