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 dfa2c612d..5eb42d3b0 100644 --- a/cli/lsp/completions.rs +++ b/cli/lsp/completions.rs @@ -31,7 +31,7 @@ static FILE_PROTO_RE: Lazy<Regex> = const CURRENT_PATH: &str = "."; const PARENT_PATH: &str = ".."; const LOCAL_PATHS: &[&str] = &[CURRENT_PATH, PARENT_PATH]; -const IMPORT_COMMIT_CHARS: &[&str] = &["\"", "'", "/"]; +pub(crate) const IMPORT_COMMIT_CHARS: &[&str] = &["\"", "'"]; #[derive(Debug, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] |