diff options
author | Philipp Mildenberger | 2023-03-15 23:35:06 +0000 |
---|---|---|
committer | Philipp Mildenberger | 2023-05-18 19:48:32 +0000 |
commit | 44b2b401907c501aca7e3f7340730406b8c3a1fb (patch) | |
tree | 6bc3e081481f2fd88a648cb6b6c3ef0dd8457f23 /helix-term | |
parent | 05583f8cc9679306d3907c9d48a351417552bbec (diff) |
Fix issue with ltex-ls, filtering params is not what we want here
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 53fbe37d..e159cb83 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -1055,7 +1055,7 @@ impl Application { let result: Vec<_> = params .items .iter() - .filter_map(|item| { + .map(|item| { let mut config = language_server.config()?; if let Some(section) = item.section.as_ref() { // for some reason some lsps send an empty string (observed in 'vscode-eslint-language-server') |