Skip to content

Commit c30cb99

Browse files
authored
Merge pull request #3 from cristiandima/fixes
Added new arguments to the flow call to enable completions across files
2 parents c2a2737 + 0e55bf4 commit c30cb99

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

flow-ide.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ def run_async(self):
177177
flow, 'type-at-pos',
178178
'--from', 'nuclide',
179179
'--root', deps.project_root,
180+
'--path', deps.filename,
180181
'--json',
181182
str(deps.row + 1), str(deps.col + 1)
182183
])
@@ -229,9 +230,10 @@ def on_query_completions_async(self, view, prefix, locations):
229230
result = call_flow_cli(deps.contents, [
230231
flow, 'autocomplete',
231232
'--from', 'nuclide',
232-
'--retry-if-init', 'false'
233+
'--retry-if-init', 'false',
233234
'--root', deps.project_root,
234-
'--json'
235+
'--json',
236+
deps.filename,
235237
])
236238

237239
if result:

0 commit comments

Comments
 (0)