@@ -186,8 +186,34 @@ def run_async(self):
186
186
187
187
188
188
class FlowListener (sublime_plugin .EventListener ):
189
+ completions = None
190
+ completions_ready = False
191
+
192
+ # Used for async completions.
193
+ def run_auto_complete (self ):
194
+ sublime .active_window ().active_view ().run_command ("auto_complete" , {
195
+ 'disable_auto_insert' : True ,
196
+ 'api_completions_only' : False ,
197
+ 'next_completion_if_showing' : False ,
198
+ 'auto_complete_commit_on_tab' : True ,
199
+ })
200
+
189
201
@wait_for_load
190
202
def on_query_completions (self , view , prefix , locations ):
203
+ # Return the pending completions and clear them
204
+ if self .completions_ready and self .completions :
205
+ self .completions_ready = False
206
+ return self .completions
207
+
208
+ sublime .set_timeout_async (
209
+ lambda : self .on_query_completions_async (
210
+ view , prefix , locations
211
+ )
212
+ )
213
+
214
+ def on_query_completions_async (self , view , prefix , locations ):
215
+ self .completions = None
216
+
191
217
if not view .match_selector (
192
218
locations [0 ],
193
219
'source.js - string - comment'
@@ -203,12 +229,13 @@ def on_query_completions(self, view, prefix, locations):
203
229
result = call_flow_cli (deps .contents , [
204
230
flow , 'autocomplete' ,
205
231
'--from' , 'nuclide' ,
232
+ '--retry-if-init' , 'false'
206
233
'--root' , deps .project_root ,
207
234
'--json'
208
235
])
209
236
210
237
if result :
211
- return (
238
+ self . completions = (
212
239
[
213
240
(
214
241
match ['name' ] + '\t ' + match ['type' ],
@@ -223,6 +250,11 @@ def on_query_completions(self, view, prefix, locations):
223
250
sublime .INHIBIT_WORD_COMPLETIONS |
224
251
sublime .INHIBIT_EXPLICIT_COMPLETIONS
225
252
)
253
+ self .completions_ready = True
254
+ sublime .active_window ().active_view ().run_command (
255
+ 'hide_auto_complete'
256
+ )
257
+ self .run_auto_complete ()
226
258
227
259
@wait_for_load
228
260
def on_selection_modified_async (self , view ):
0 commit comments