1
1
mirror of https://github.com/tweag/nickel.git synced 2024-10-06 16:18:08 +03:00

fix lsp errors due to new Ident representation

This commit is contained in:
Anthony Caccia 2022-10-03 13:31:05 +02:00
parent 7222983087
commit fcd72cba0b

View File

@ -50,7 +50,7 @@ pub fn handle_completion(
_ => None,
})
.map(|(ident, _)| CompletionItem {
label: ident.label,
label: ident.into(),
..Default::default()
})
.collect();