Skip to content

Commit c2a2737

Browse files
committed
Add Package Settings menu; asyncify autocomplete
1 parent 8b60c7a commit c2a2737

File tree

2 files changed

+67
-1
lines changed

2 files changed

+67
-1
lines changed

Main.sublime-menu

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[
2+
{
3+
"caption": "Preferences",
4+
"mnemonic": "n",
5+
"id": "preferences",
6+
"children":
7+
[
8+
{
9+
"caption": "Package Settings",
10+
"mnemonic": "P",
11+
"id": "package-settings",
12+
"children":
13+
[
14+
{
15+
"caption": "FlowIDE",
16+
"children":
17+
[
18+
{
19+
"command": "open_file",
20+
"args": {"file": "${packages}/FlowIDE/FlowIDE.sublime-settings"},
21+
"caption": "Settings – Default"
22+
},
23+
{
24+
"command": "open_file",
25+
"args": {"file": "${packages}/User/FlowIDE.sublime-settings"},
26+
"caption": "Settings – User"
27+
}
28+
]
29+
}
30+
]
31+
}
32+
]
33+
}
34+
]

flow-ide.py

+33-1
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,34 @@ def run_async(self):
186186

187187

188188
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+
189201
@wait_for_load
190202
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+
191217
if not view.match_selector(
192218
locations[0],
193219
'source.js - string - comment'
@@ -203,12 +229,13 @@ def on_query_completions(self, view, prefix, locations):
203229
result = call_flow_cli(deps.contents, [
204230
flow, 'autocomplete',
205231
'--from', 'nuclide',
232+
'--retry-if-init', 'false'
206233
'--root', deps.project_root,
207234
'--json'
208235
])
209236

210237
if result:
211-
return (
238+
self.completions = (
212239
[
213240
(
214241
match['name'] + '\t' + match['type'],
@@ -223,6 +250,11 @@ def on_query_completions(self, view, prefix, locations):
223250
sublime.INHIBIT_WORD_COMPLETIONS |
224251
sublime.INHIBIT_EXPLICIT_COMPLETIONS
225252
)
253+
self.completions_ready = True
254+
sublime.active_window().active_view().run_command(
255+
'hide_auto_complete'
256+
)
257+
self.run_auto_complete()
226258

227259
@wait_for_load
228260
def on_selection_modified_async(self, view):

0 commit comments

Comments
 (0)