Expand description
Path completion support for file and directory paths.
Provides completion suggestions for partial paths within a directory tree, respecting .gitignore and .ignore files.
Functionsยง
- path_
completions - Get path completions for a given prefix within a root directory.
Uses ignore crate with standard filters to respect
.gitignore. Returns matching file and directory paths up to 100 results. - symbol_
completions - Get symbol completions (function and class names) for a given file path.
Looks up cached
AnalysisCacheand extracts matching symbols. Returns matching function and class names up to 100 results.