Skip to content

Commit 3732d15

Browse files
committed
Pass context to env vars completion
1 parent e2d3c15 commit 3732d15

File tree

1 file changed

+1
-1
lines changed
  • crates/ide-completion/src

1 file changed

+1
-1
lines changed

crates/ide-completion/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ pub fn completions(
183183
CompletionAnalysis::String { original, expanded: Some(expanded) } => {
184184
completions::extern_abi::complete_extern_abi(acc, ctx, expanded);
185185
completions::format_string::format_string(acc, ctx, original, expanded);
186-
completions::env_vars::complete_cargo_env_vars(acc, expanded);
186+
completions::env_vars::complete_cargo_env_vars(acc, ctx, expanded);
187187
}
188188
CompletionAnalysis::UnexpandedAttrTT {
189189
colon_prefix,

0 commit comments

Comments
 (0)