diff options
Diffstat (limited to 'cli/lsp/completions.rs')
-rw-r--r-- | cli/lsp/completions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/completions.rs b/cli/lsp/completions.rs index 5eb42d3b0..b223c71a2 100644 --- a/cli/lsp/completions.rs +++ b/cli/lsp/completions.rs @@ -469,7 +469,7 @@ fn get_workspace_completions( specifier_strings .into_iter() .filter_map(|label| { - if label.starts_with(¤t) { + if label.starts_with(current) { let detail = Some( if label.starts_with("http:") || label.starts_with("https:") { "(remote)".to_string() |