mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Bail if no language servers support workspace symbols (#7286)
This commit is contained in:
parent
31b8b728a2
commit
d4427125eb
1 changed files with 9 additions and 0 deletions
|
@ -442,6 +442,15 @@ pub fn symbol_picker(cx: &mut Context) {
|
|||
|
||||
pub fn workspace_symbol_picker(cx: &mut Context) {
|
||||
let doc = doc!(cx.editor);
|
||||
if doc
|
||||
.language_servers_with_feature(LanguageServerFeature::WorkspaceSymbols)
|
||||
.count()
|
||||
== 0
|
||||
{
|
||||
cx.editor
|
||||
.set_error("No configured language server supports workspace symbols");
|
||||
return;
|
||||
}
|
||||
|
||||
let get_symbols = move |pattern: String, editor: &mut Editor| {
|
||||
let doc = doc!(editor);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue