mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-08-03 09:52:27 +00:00

* auto complete code in param position * dev: initial path completion in params * fix: compile error * remove two todo * dev: improve get_deref_target * check string during completion * feat: complete path arguments * feat: identify hash before function follows a content parameter * dev: complete text.size, text.dir, stack.dir, stroke dict * dev: add record type * dev: complete stroke dict * fix: correct kind of langauge of code tooltip * dev: add colon trigger character * dev: let type selection complete * dev: complete inset/outset/margin/radius dictionary types * dev: complete raw theme/syntaxes, bib path types * dev: complete all files at the same time * dev: update snapshot
98 lines
3.1 KiB
Rust
98 lines
3.1 KiB
Rust
use crate::{
|
|
prelude::*,
|
|
syntax::{get_lexical_hierarchy, LexicalHierarchy, LexicalScopeKind},
|
|
SemanticRequest,
|
|
};
|
|
|
|
/// The [`workspace/symbol`] request is sent from the client to the server to
|
|
/// list project-wide symbols matching the given query string.
|
|
///
|
|
/// [`workspace/symbol`]: https://microsoft.github.io/language-server-protocol/specification#workspace_symbol
|
|
///
|
|
/// # Compatibility
|
|
///
|
|
/// Since 3.17.0, servers can also provider a handler for
|
|
/// [`workspaceSymbol/resolve`] requests. This allows servers to return
|
|
/// workspace symbols without a range for a `workspace/symbol` request. Clients
|
|
/// then need to resolve the range when necessary using the `workspaceSymbol/
|
|
/// resolve` request.
|
|
///
|
|
/// // [`workspaceSymbol/resolve`]: Self::symbol_resolve
|
|
///
|
|
/// Servers can only use this new model if clients advertise support for it via
|
|
/// the `workspace.symbol.resolve_support` capability.
|
|
#[derive(Debug, Clone)]
|
|
pub struct SymbolRequest {
|
|
/// The query string to filter symbols by. It is usually the exact content
|
|
/// of the user's input box in the UI.
|
|
pub pattern: Option<String>,
|
|
}
|
|
|
|
impl SemanticRequest for SymbolRequest {
|
|
type Response = Vec<SymbolInformation>;
|
|
|
|
fn request(self, ctx: &mut AnalysisContext) -> Option<Self::Response> {
|
|
// todo: let typst.ts expose source
|
|
|
|
let mut symbols = vec![];
|
|
|
|
ctx.resources.iter_dependencies(&mut |path, _| {
|
|
let Ok(source) = ctx.source_by_path(path) else {
|
|
return;
|
|
};
|
|
let uri = path_to_url(path).unwrap();
|
|
let res = get_lexical_hierarchy(source.clone(), LexicalScopeKind::Symbol).and_then(
|
|
|symbols| {
|
|
self.pattern.as_ref().map(|pattern| {
|
|
filter_document_symbols(
|
|
&symbols,
|
|
pattern,
|
|
&source,
|
|
&uri,
|
|
ctx.position_encoding(),
|
|
)
|
|
})
|
|
},
|
|
);
|
|
|
|
if let Some(mut res) = res {
|
|
symbols.append(&mut res)
|
|
}
|
|
});
|
|
|
|
Some(symbols)
|
|
}
|
|
}
|
|
|
|
#[allow(deprecated)]
|
|
fn filter_document_symbols(
|
|
symbols: &[LexicalHierarchy],
|
|
query_string: &str,
|
|
source: &Source,
|
|
uri: &Url,
|
|
position_encoding: PositionEncoding,
|
|
) -> Vec<SymbolInformation> {
|
|
symbols
|
|
.iter()
|
|
.flat_map(|e| {
|
|
[e].into_iter()
|
|
.chain(e.children.as_deref().into_iter().flatten())
|
|
})
|
|
.filter(|e| e.info.name.contains(query_string))
|
|
.map(|e| {
|
|
let rng = typst_to_lsp::range(e.info.range.clone(), source, position_encoding);
|
|
|
|
SymbolInformation {
|
|
name: e.info.name.clone(),
|
|
kind: e.info.kind.clone().try_into().unwrap(),
|
|
tags: None,
|
|
deprecated: None,
|
|
location: LspLocation {
|
|
uri: uri.clone(),
|
|
range: rng,
|
|
},
|
|
container_name: None,
|
|
}
|
|
})
|
|
.collect()
|
|
}
|