Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/ui/mod.rs')
| -rw-r--r-- | helix-term/src/ui/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 660bbfea..0b8dae85 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -339,7 +339,7 @@ pub mod completers { let language_ids = editor .syn_loader .language_configs() - .map(|config| &config.language_id) + .map(|config| &config.language_name) .chain(std::iter::once(&text)); fuzzy_match(input, language_ids, false) |