mirror of
https://github.com/hatoo/egglog-language-server.git
synced 2025-12-23 04:36:33 +00:00
completion true/false
This commit is contained in:
parent
c32ed4f43e
commit
423f7cb5ad
1 changed files with 5 additions and 0 deletions
|
|
@ -545,6 +545,11 @@ impl SrcTree {
|
|||
kind: Some(CompletionItemKind::FUNCTION),
|
||||
..Default::default()
|
||||
})
|
||||
.chain(vec!["true", "false"].into_iter().map(|s| CompletionItem {
|
||||
label: s.to_string(),
|
||||
kind: Some(CompletionItemKind::VARIABLE),
|
||||
..Default::default()
|
||||
}))
|
||||
.collect();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue