We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbcc33b commit a96786bCopy full SHA for a96786b
crates/emmylua_ls/src/handlers/completion/providers/env_provider.rs
@@ -22,10 +22,11 @@ pub fn add_completion(builder: &mut CompletionBuilder) -> Option<()> {
22
match node {
23
LuaAst::LuaNameExpr(_) => {}
24
LuaAst::LuaBlock(_) => {}
25
+ LuaAst::LuaClosureExpr(_) => {}
26
LuaAst::LuaCallArgList(_) => {}
27
// 字符串中触发的补全
28
LuaAst::LuaLiteralExpr(_) => return None,
- _ => {}
29
+ _ => return None,
30
};
31
32
let mut duplicated_name = HashSet::new();
0 commit comments